* {
    margin: 0;
   padding    :      0;
    box-sizing: border-box;
	
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.main-navigation {
    position: fixed;
   top: 0;
	width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;


}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width    :  1200px;
    margin: 0 auto;
   display   :   flex;
  justify-content: space-between;
    align-items: center;
   padding: 15px 20px; 

}

.nav-logo {
    height: 45px;
   width: auto;
}

.desktop-nav
{
  display: flex;
          gap: 30px; 

}

.desktop-nav a {
	 text-decoration: none;
  color: #333;
   font-weight: 500;
  transition: color 0.3s ease;
    position    :  relative;
}

.desktop-nav a:hover {
    color  : #d73027;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
    width: 0;
   height: 2px;
   bottom: -5px;
  left     :        0;
   background-color: #d73027;
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width   :100%;
}

.burger-menu {
  display: none;
    flex-direction: column;
  cursor: pointer;
    width: 30px;
    height    :    24px;
    justify-content: space-between;
}


.burger-menu span {
	 height   :      3px;
  transition: all 0.3s ease;
   width: 100%;
  background-color: #333;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;

}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
   display: none;
   background: white;
  position: absolute;
    top: 100%;
   left: 0;
	 width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}



.mobile-nav a {
    text-decoration    :        none;
                    border-bottom    :1px solid #eee;
   display: block;
	color: #333;
    padding: 15px 20px;
  transition: background-color 0.3s ease;
}


.mobile-nav a:hover {
    color: #d73027;
   background-color: #f5f5f5;
}

main {
    margin-top  :     80px;
}

.hero-area {
  display   :    grid; 
	   grid-template-columns: 1fr 1fr; 
	    gap: 50px; 
	  max-width: 1200px; 
	  margin     :80px auto; 
	   padding: 0 20px; 
	   align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
  line-height :1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
 color  :#666;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
   gap: 20px;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn, .cta-button {

	   padding: 15px 30px;
    -moz-border-radius : 8px;
    -webkit-border-radius: 8px;
      -webkit-transition    :      all 0.3s ease;
  text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
 transition: all 0.3s ease;
    display: inline-block;
    text-align: center; 
	
	}

.primary-btn, .cta-button {
  background: linear-gradient(135deg, #d73027, #fc4a1a);
  color: white;
  border : none;
    cursor: pointer;
}

.primary-btn:hover, .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(215, 48, 39, 0.3);
}

.secondary-btn {
        background: transparent;
  color: #d73027;
   border: 2px solid #d73027;
}

.secondary-btn:hover {
        background: #d73027;
	 color: white;
  transform: translateY(-2px);
}

.hero-visual img {


    width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
	}

.services-overview {

    background:white;
  padding: 100px 20px;
}

.section-header {
    margin: 0 auto 60px;
  max-width: 600px;
  text-align: center;
}

.section-header h2    {
   font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color :#666;
    line-height: 1.6;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
          margin :  0 auto;
}

.service-card {

    background: #f8f9fa;
          border-radius: 12px;
  padding: 30px;
	text-align   :    center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;


}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {

	      width: 100%;
  height: 200px;
   object-fit: cover;
   border-radius: 8px;
  margin-bottom: 25px;}

.service-card h3 {
	               font-size  :      1.5rem;
  color: #2c3e50;
                    margin-bottom: 15px;
   font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.methodology-section  
  {
    padding :0 20px;
  gap: 60px;
	 align-items: center;
  max-width: 1200px;
   grid-template-columns  :  1fr 1fr;
  display: grid;
  margin: 100px auto;
}

.method-content h2 {
       font-size: 2.5rem;

    color: #2c3e50;

  margin-bottom     :   25px;

	font-weight: 700;
}  

.method-content > p {


   font-size  : 1.1rem;
  color  :   #666;
    margin-bottom: 40px;
  line-height: 1.7;
     }

.method-features {
    display: flex;
	   flex-direction: column;
	   gap: 25px;
}

.feature-item h4 {
   font-size: 1.3rem;
    color: #d73027;
  margin-bottom: 10px;
  font-weight: 600;
} 

.feature-item p {
  color: #666;
    line-height : 1.6;
}  

.method-visual img {
  width:   100%;
  height: auto;
    border-radius  :       15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
  text-align: center;
   padding: 80px 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
    margin-bottom    :  20px;
  font-weight: 700;
}

.cta-content p {

  font-size: 1.2rem;

	  margin-bottom: 35px;

	   max-width :  600px;

	   margin-left    :      auto;

	    margin-right: auto;

	  line-height: 1.6;

}

.contact-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.contact-header h2 {
    font-size: 2.8rem;
   color     : #2c3e50;
   margin-bottom: 20px;
    font-weight: 700;
}

.contact-header p {
         font-size: 1.2rem; 
	color: #666; 
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 60px;
   max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
   background: white;
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label 
 {
   display: block;
  margin-bottom   : 8px;
   font-weight: 600;
    color: #333;
	
} 

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding     :12px 15px;
          border : 2px solid #e0e0e0;
                    border-radius: 8px;
  font-size: 16px;
    transition: border-color 0.3s ease;
  background: #fafafa; 
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus 
 {
     outline: none;
	   border-color: #d73027;
	  background: white;


}

.form-group textarea {
	resize: vertical;
   min-height: 120px;
}



.submit-btn {
  background: linear-gradient(135deg, #d73027, #fc4a1a);
   color :      white;
    padding: 15px 40px;
   border: none;
    border-radius: 8px;
  font-size: 16px;
    font-weight: 600;
   cursor    :       pointer;
  transition: all 0.3s ease;
   width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(215, 48, 39, 0.3);

}

.contact-info


{

	  display: flex;
    flex-direction: column;
   gap: 30px;
     }

.info-item h4 {
  font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom: 10px;
  font-weight: 600;
}

.info-item p  {
  color: #666;
   line-height: 1.6;
}

.site-footer {
   color: white;
    background: #2c3e50;
   padding: 60px 20px 20px; 

}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
	 height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 15px; 

}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
	font-weight: 600;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
    color: #bdc3c7;
}

.footer-section ul li a:hover {
   color: white;
}

.footer-section p {
    color:#bdc3c7;
    line-height: 1.6;
}

.footer-bottom {

    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
  border-top: 1px solid #34495e;
   color: #95a5a6;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hero-area {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin: 40px auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .methodology-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-overview,
    .contact-section {
        padding: 60px 15px;
    }
    
    .methodology-section {
        margin: 60px auto;
        padding: 0 15px;
    }
    
    .primary-btn,
    .secondary-btn,
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}.about-hero {


  display     :      grid;
     grid-template-columns: 1.2fr 1fr;
       gap  :       50px;
      max-width: 1200px;
     margin: 80px auto;
      padding: 0 20px;
       align-items: center;}

.about-hero-content h1     {
               font-size: 3rem;
   font-weight: 700;
   color: #2c3e50;
   margin-bottom :     25px;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 1.25rem;
   color: #666;
	 line-height: 1.6;
}

.about-hero-visual img {
    width     :  100%;
  height: auto;
         border-radius :       15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.story-section

{
  background     :   white;
    padding: 100px 20px;
}



.story-container {
	   max-width: 800px;
  margin: 0 auto;
     text-align  :  center;
	}

.story-container h2    {

  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom :        40px;
   font-weight: 700;

}

.story-content p {
    font-size:      1.1rem;
  color: #666;
    line-height: 1.8;
   margin-bottom: 25px;
    text-align   :   left;
}

.values-section {
    background: #f8f9fa;
  padding: 100px 20px;
  text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 60px;
  font-weight: 700;
   max-width: 1200px;
	 margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
	 max-width: 1200px;
    margin: 0 auto;
}

.value-card {
          background: white;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
     }

.value-card:hover	{
  transform: translateY(-5px);
}

.value-card h3 {
   font-size :    1.4rem;
	  color: #d73027;
	   margin-bottom: 15px;
	   font-weight: 600;
	
}

.value-card p {
   color: #666;
   line-height: 1.6;
}

.approach-section {

  padding: 100px 20px;
    background: white;}

.approach-content {
   gap: 60px;
   display: grid;
  margin: 0 auto;
  max-width: 1200px;
    align-items  :    center;
   grid-template-columns: 1.3fr 1fr;
}

.approach-text h2 {
    font-size: 2.5rem;
      color: #2c3e50;
     margin-bottom     :    25px;
     font-weight: 700;
}

.approach-text > p {
    font-size: 1.1rem;
   color: #666;
    margin-bottom: 40px;
	line-height: 1.7;
}

.approach-steps {
  gap: 25px;
  flex-direction     :     column;
    display: flex;
}

.step-item h4 {
	font-size: 1.3rem;
    color: #d73027;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-item p


{
  color: #666;
   line-height: 1.6;
}

.approach-visual img {
   width: 100%;
  height: auto;
	border-radius   :     15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expertise-section {
	background: #f8f9fa;
   padding: 100px 20px;
   text-align: center;
}

.expertise-section h2 {
     font-size: 2.5rem;
                    color: #2c3e50;
	margin-bottom: 60px;
 font-weight: 700;

}

.expertise-grid {
   display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
    max-width: 1200px;
	margin: 0 auto;
}

.expertise-item {
   background: white;
     border-radius: 12px;
       overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
}

.expertise-item:hover	{
	  transform: translateY(-5px);
}

.expertise-item img {


   width: 100%;
    height: 200px;
    object-fit: cover;}

.expertise-item h3 {
    font-size: 1.4rem;
  color: #2c3e50;
         margin    :   25px 20px 15px;
 font-weight: 600;
}

.expertise-item p {
   color: #666;
   line-height:   1.6;
  margin     :        0 20px 25px;
}

.stats-section     {
  background: linear-gradient(135deg, #2c3e50, #34495e);
   color: white;
   padding: 100px 20px;
    text-align: center;
}

.stats-section h2 {
        font-size: 2.5rem;
	margin-bottom: 60px;
  font-weight: 700;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
         gap: 40px;
	 max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
   display: flex;
               flex-direction: column;
	 align-items: center;
}

.stat-number {
  font-size: 3.5rem;
         font-weight: 700;
   color: #fc4a1a;
  margin-bottom     :     10px;
}  

.stat-label {
   font-size  :        1.1rem;
   color: #bdc3c7;
}

.cta-about {
    background   :#f8f9fa;
   padding: 80px 20px;
  text-align :   center;
}

.cta-about-content h2 {
  font-size: 2.5rem; 
  color: #2c3e50; 
	margin-bottom: 20px; 
   font-weight: 700;
}

.cta-about-content p {
        font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
 max-width: 600px;
   margin-left: auto;
   margin-right: auto;
  line-height: 1.6;
}

.thankyou-hero {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 100px 20px;
   min-height: 70vh;
                    display: flex;
    align-items: center;
}

.thankyou-container {
	   max-width: 1000px;
  margin: 0 auto;
	text-align: center;
	}

.thankyou-content {
         margin-bottom: 60px; 

}

.success-icon {
	width: 80px;
  height: 80px;
       margin: 0 auto 30px;
  position: relative;
}

.checkmark     {
   width: 80px;
    height: 80px;
	 border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  position: relative;
  transform: rotate(45deg);
}

.checkmark::before {
	  content: '';
  position: absolute;
   left: 20px;
  top: 35px;
   width: 15px;
    height    : 25px;
   border: solid white;
                    border-width:     0 4px 4px 0;
  transform: rotate(-45deg);}

.thankyou-content h1 {
    font-size: 3rem;
	color: #2c3e50;
   margin-bottom: 25px;
   font-weight: 700; 
	
}

.thankyou-subtitle{
    font-size: 1.3rem;
  color     :    #666;
    line-height: 1.6;
   max-width: 700px;
  margin: 0 auto;
}

.next-steps


{
	background: white;
   padding: 50px 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
   font-size: 2.2rem;
   color: #2c3e50;
    margin-bottom: 40px;
  text-align  :      center;
	 font-weight: 700;


}

.steps-timeline {
  display: flex; 
		 flex-direction: column; 
	  gap: 30px; 

}

.timeline-item {
         display: flex;
      gap  :25px;
   align-items: flex-start;
}


.timeline-number {
   min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d73027, #fc4a1a);
    color     :        white;
   border-radius: 50%;
  display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
  font-size: 1.2rem;
}

.timeline-content h3 {
  font-size: 1.3rem;
    color:#2c3e50;
   margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {

	        color: #666;
  line-height: 1.6;
     }

.while-waiting {
  background: white;
  padding: 50px 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.while-waiting h2


{
     color: #2c3e50;
   font-size: 2.2rem;
  text-align: center;
    margin-bottom: 40px;
    font-weight   :    700;
	}

.waiting-content {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	   gap: 40px;
}

.waiting-item {


   text-align: center;
}

.waiting-item img {
  width:   100%;
    height     : 180px;
   object-fit   :   cover;
   border-radius: 10px;
    margin-bottom:      20px;
}

.waiting-item h3 {


    font-size: 1.3rem;
    color: #2c3e50;
          margin-bottom     :15px;
   font-weight: 600; 
	
}

.waiting-item p {
  color: #666;
    line-height: 1.6;
}

.contact-reminder {
   background: #f8f9fa;
  padding: 30px;
    border-radius: 10px;
	margin-bottom: 40px;
        text-align: center;
}

.contact-reminder h3 {
 font-size   :      1.4rem;
   color: #2c3e50;
   margin-bottom: 10px;
   font-weight: 600;
} 

.contact-reminder p{

    color: #666;

     margin-bottom: 15px;}



.phone-link    {
  font-size: 1.3rem;
  color: #d73027;
    text-decoration: none;
	font-weight: 600;
}

.phone-link:hover {
	color: #fc4a1a;
}

.return-actions {
       display: flex;
  gap: 20px;
   justify-content: center;
  flex-wrap: wrap; 

} 

.testimonial-preview {
    background :  #f8f9fa;
  padding  :      80px 20px;
}

.testimonial-content {
   max-width: 800px;
   margin: 0 auto;
   text-align: center;

}

.testimonial-content h2 {
   font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 50px;
   font-weight: 700;
}

.testimonial-item {

	    background: white;
	  padding: 40px 30px;
	    border-radius: 12px;
	    margin-bottom: 30px;
	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-item p	{


   margin-bottom: 20px;
    font-size: 1.1rem;
	font-style :italic;
  line-height: 1.7;
	color: #666;}

.testimonial-author {

  color: #d73027;
       font-weight: 600;

} @media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin: 40px auto;
    }
    
    .about-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .thankyou-content h1 {
        font-size: 2.3rem;
    }
    
    .next-steps,
    .while-waiting {
        padding: 30px 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .story-section,
    .values-section,
    .expertise-section,
    .stats-section,
    .cta-about {
        padding: 60px 15px;
    }
    
    .approach-section {
        padding: 60px 15px;
    }
    
    .thankyou-hero {
        padding: 60px 15px;
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .story-container h2,
    .values-section h2,
    .expertise-section h2,
    .stats-section h2,
    .cta-about-content h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}.cookies-section, .privacy-section {
   padding: 100px 20px;
   background: #f8f9fa;
}

.cookies-content, .privacy-content {
  max-width: 800px;
    margin: 0 auto;
  line-height: 1.7;
    color: #333;
	
}

.cookies-content h3, .privacy-content h3 
 {
		font-size: 1.5rem;
  color: #2c3e50;
   margin    :  30px 0 15px;
    font-weight   :     600;
}

.cookies-content p, .privacy-content p {
    font-size: 1.1rem;
   color: #666;
  margin-bottom: 20px;
}@media (max-width: 768px) {
    .cookies-section, .privacy-section {
        padding: 60px 15px;
    }

    .cookies-content h3, .privacy-content h3 {
        font-size: 1.3rem;
    }

    .cookies-content p, .privacy-content p {
        font-size: 1rem;
    }
}