* {
        margin: 0;
  padding: 0;
   box-sizing: border-box;
}

body {
	 color: #333;
	background: #fafafa;
  font-family: 'Arial', sans-serif;
         line-height: 1.6;
}

.main-navigation {
    background    :  #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
  width: 100%;
	z-index   :   1000;
	
}

.nav-container {
	 max-width     :1200px;
  margin: 0 auto;
    padding: 0 20px;
  display:   flex;
    justify-content     :space-between;
    align-items: center;
    height   :   70px;
}

.company-logo 
 {
    height: 45px;
  width: auto;
}  

.nav-links {
   display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
  text-decoration: none; 
  color   :      #2c3e50; 
	font-weight   :       500; 
   transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3498db;
}

.mobile-toggle {
	 display: none;
   flex-direction: column;
    background: none;
    border   : none;
  cursor: pointer;
   padding: 5px;
}

.mobile-toggle span {
	width: 25px;
    height: 3px;
    background: #2c3e50;
    margin :   3px 0;
	transition  :       0.3s;
}

.hero-banner {
    margin-top: 70px;
  padding   :     80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
               display: flex;
  align-items: center;
   min-height: 90vh;
}

.hero-content {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items   :        center;
}

.hero-content h1 {
   font-weight: 700;
   font-size: 3.2rem;
  margin-bottom :       1.5rem;
    line-height: 1.2;
}

.hero-content p {
                    font-size: 1.2rem;
    margin-bottom: 2rem;
                    opacity: 0.9;
}

.hero-actions {
   display: flex;
   gap: 1rem;
	flex-wrap: wrap;
	
}

.primary-btn, .secondary-btn {
   transition: all 0.3s ease;
  text-decoration: none;
     border-radius: 8px;
   padding: 15px 30px;
  font-weight: 600;
   display: inline-block;
}

.primary-btn {
  background     :       #fff;
  color: #667eea;
}

.primary-btn:hover
	{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.secondary-btn {

   background: transparent;
  color: white;
  border: 2px solid white;


}

.secondary-btn:hover {
	color: #667eea;
    background: white;
}

.hero-image {
   width:     100%;

    height: auto;

    border-radius: 12px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
       padding: 100px 20px;
   background: #fff;
	}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {
	    text-align: center;
  font-size   : 2.8rem;
   margin-bottom: 3rem;
                    color: #2c3e50;
     }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap    :  2.5rem;
}

.service-card {
  background  :    #f8f9fa;
  padding  :2rem;
  border-radius   : 15px;
    text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);}

.service-img {
					width: 100%;
	 -webkit-border-radius: 10px;
    height: 200px;
	 object-fit: cover;
   border-radius: 10px;
    -moz-border-radius: 10px;
   margin-bottom: 1.5rem;
}

.service-card h3 {
         color: #2c3e50;
   font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
   color: #666;
  line-height: 1.6;
}



.approach-methodology {
   padding: 100px 20px;
    background: #f1f2f6;
}

.approach-content {
	    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items:   center;


     }

.approach-content h2 {
     font-size: 2.5rem;
    margin-bottom  : 1.5rem;
  color: #2c3e50;
}

.approach-content p {
  margin-bottom   :   1.5rem; 
  font-size: 1.1rem; 
    color: #555;
}

.methodology-points {
          list-style: none;
    padding-left: 0;
}

.methodology-points li {
  padding-left: 25px;
 position: relative;
  padding: 10px 0;
}

.methodology-points li::before {
  content: "✓";
    position: absolute;
  left  :     0;
    color: #27ae60;
   font-weight: bold;
}

.approach-image {
    width: 100%;
	height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-section {
   padding  :    80px 20px;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
  text-align: center;
  color: white;}

.cta-content h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
   background: white;
   color: #f5576c;
  padding:    18px 35px;
	 text-decoration: none;
          border-radius: 50px;
   font-weight: 600;
    font-size: 1.1rem;
   transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);


}

.contact-section {
    padding: 100px 20px;
   background: #fff;
} 

.contact-section h2
{
   text-align: center;
    font-size:2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
}



.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 3rem;
   max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
   margin-bottom: 1.5rem;
    color: #2c3e50;
}  

.info-item {
  margin-bottom: 1.5rem;
	


}

.info-item strong     {
 display: block;
  margin-bottom: 0.5rem;
   color: #2c3e50;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
   border-radius: 12px;

}

.form-row {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom  :       1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	padding: 12px;
   border: 2px solid #ddd;
  border-radius     :    8px;
  font-size   :        16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
   border-color    :     #3498db;
}

.contact-form textarea


{
  grid-column: 1 / -1;
	    resize: vertical;
	   margin-bottom: 1rem;

}

.submit-btn {

  background: #3498db;
  color: white;
   padding: 15px 30px;
    border: none;
  border-radius: 8px;
  font-size:  16px;
    font-weight: 600;
    cursor: pointer;
   transition: background 0.3s ease;
   width: 100%;
     }

.submit-btn:hover {
   background: #2980b9;
}

.main-footer {
   background: #2c3e50;
         color: white;
  padding: 40px 20px 20px;
}

.footer-container {
    max-width    :  1200px;
	   margin: 0 auto;
	      display   :   grid;
		 grid-template-columns: 1fr 2fr;
	   gap: 2rem;
	    align-items: center;
}

.footer-logo {
    height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info		{
				 display: grid; 
    grid-template-columns    :  1fr 1fr; 
    gap: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.footer-nav     {
   display: flex;
    flex-direction: column;
  gap:        0.5rem;
}

.footer-nav a    {
	    color     :        white;
    text-decoration: none;
   transition: color 0.3s ease;


}

.footer-nav a:hover {

       color: #3498db;
     }

.footer-bottom {
  border-top: 1px solid #34495e;
   margin-top: 2rem;
   padding-top:     1rem;
  text-align: center;
    opacity: 0.7;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  margin-top: 70px;
   padding: 80px 20px;
  background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    color: #2c3e50;
}



.about-hero-content {
  text-align: center;
	max-width: 800px;
   margin: 0 auto 3rem;
}

.about-hero h1 {
  font-size: 3rem;
	margin-bottom: 1.5rem;
   font-weight: 700;
	
}

.about-hero p {
    font-size    :  1.2rem;
	 line-height: 1.7;
  color    :   #555;
}

.hero-stats {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
    max-width: 600px;
   margin: 0 auto;}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
  color: #666;
     font-weight: 500;

}

.our-story
{
	padding: 100px 20px;
    background: #fff;
}

.story-content {
   display: grid;
  grid-template-columns:     1.2fr 1fr;
	gap: 3rem;
   align-items   :       center;
}

.story-text h2 {
    font-size     :2.5rem;
   margin-bottom :      1.5rem;
    color   :        #2c3e50;
	
}


.story-text p  {
  margin-bottom: 1.5rem;
    color: #555;
  line-height: 1.7;
    font-size: 1.1rem;
}

.story-image {
  width:      100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.our-approach {
       padding: 100px 20px;
  background: #f8f9fa;
     }

.our-approach h2   {
	 text-align: center;
  font-size: 2.8rem;
    margin-bottom   :     3rem;
    color: #2c3e50;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :    2.5rem;
}

.approach-card {
       padding: 2rem;
   text-align: center;
	 background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
	 border-radius: 15px;




}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.approach-img {


    width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
     }

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.approach-card p     {
   color     :#666;
    line-height: 1.6;
} 

.expertise-areas {
    padding: 100px 20px;
  background: #fff;
}

.expertise-areas h2 {
  text-align:    center;
   font-size: 2.8rem;
  margin-bottom: 3rem;
	color: #2c3e50;
}

.expertise-content {
    align-items:      center;
	 grid-template-columns: 1.5fr 1fr;
   gap: 3rem;
    display:        grid;
}

.expertise-list {
    display: flex;
  flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
   padding:      1.5rem;
   background: #f8f9fa;
    border-radius: 12px;
  border-left: 4px solid #3498db;
}

.expertise-item h4 {
  font-size: 1.3rem;
   margin-bottom: 0.8rem;
  color: #2c3e50;
}

.expertise-item p {
  color  :       #666;
    line-height: 1.6;
}

.expertise-image {
   width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.values-mission {
   padding   :    100px 20px;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.values-grid {
    display: grid;
   grid-template-columns: 1fr 1fr;
       gap: 3rem;
}

.mission-block h2,
.values-block h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.mission-block p {
   font-size: 1.1rem;
  line-height: 1.7;
       opacity   :     0.9;
}

.values-list {
  list-style: none;
    padding: 0;
}

.values-list li {
   padding:      10px 0;
    position: relative;
	padding-left: 25px;
    opacity :       0.9;
}

.values-list li::before {
  content: "✓";
    position: absolute;
  left: 0;
	color: #a8edea;
  font-weight: bold;
}

.why-choose-us {
  padding  :      100px 20px;
  background: #f1f2f6;
}

.why-choose-us h2 {
    text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.benefit-item {
    background: white;
   padding: 2rem;
    border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;


}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item h4 {


   margin-bottom: 1rem;
   font-size: 1.3rem;
 color: #2c3e50;


}

.benefit-item p {

	   color: #666;
	line-height: 1.6;

}

.thankyou-hero

{
    margin-top    :   70px;
   padding: 80px 20px;
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
  min-height: 80vh;
      display: flex;
    align-items: center;
}

.thankyou-content {

  max-width: 1200px;
    margin: 0 auto;
                    display: grid;
    grid-template-columns: 1.2fr 1fr;
   gap: 3rem;
   align-items: center;
}  

.success-icon {
	text-align: center;
  margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
   height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display   :       inline-flex;
  align-items: center;
  justify-content    :        center;
    animation: checkmarkPulse 2s infinite;
}

.checkmark


{
    width: 25px;
  height:     15px;
   border  :3px solid white;
    border-top: none;
    border-right: none;
  transform: rotate(-45deg);
}@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {
	 color: #2c3e50;
    margin-bottom: 1rem;
   font-size: 3rem;
    text-align: left;
}

.lead-text {
    font-size: 1.3rem;
   margin-bottom: 2rem;
  color: #555;
  line-height: 1.6;
}

.next-steps h2 {
    font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap     :        1.5rem;
   margin-bottom: 2rem;
}

.step-item  
  {
  background: rgba(255, 255, 255, 0.4);
    padding: 1.5rem;
   border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.step-number {
  width: 40px;
   height: 40px;
   background: #3498db;
    color: white;
   border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
               font-weight: bold;
    margin  : 0 auto 1rem;
}

.step-item h3 {
	 font-size: 1.2rem;
	margin-bottom: 0.8rem;
	color: #2c3e50;
}

.step-item p  
  {
    color: #555;
  font-size: 0.9rem;
                    line-height :     1.5;
}

.contact-info-box {
  background: rgba(255, 255, 255, 0.5);
               padding: 1.5rem;
  border-radius: 12px;
    margin: 2rem 0;
  backdrop-filter: blur(10px);
}

.contact-info-box h3
{
    margin-bottom: 1rem;
   color: #2c3e50;
}

.contact-info-box p {
	    margin-bottom: 0.5rem;
   color: #555;
	} 

.cta-actions {
    display: flex;
  gap: 1rem;
  margin-top: 2rem;


}

.thankyou-image {
   width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.while-waiting {
  padding: 80px 20px;
      background: #fff;
} 

.while-waiting h2 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom   :       3rem;
    color: #2c3e50;
}

.waiting-content {


   display: grid;

	  grid-template-columns    :        1fr 1fr;

	   gap: 3rem;

	    max-width: 1000px;

		margin: 0 auto;
}

.waiting-tips h3 {
    font-size: 1.5rem;
  margin-bottom    :     1.5rem;
    color: #2c3e50;
}

.preparation-list {
   list-style: none;
  padding   :  0; 
	
}

.preparation-list li {
  padding: 10px 0;
   position   :relative;
	 padding-left: 25px;
    color: #555;
    line-height: 1.6;
}

.preparation-list li::before {
  content: "→";
   position    :absolute;
	 left: 0;
   color: #3498db;
   font-weight: bold;
	
}

.resource-box {
    border-left: 4px solid #3498db; 
   border-radius    :    12px; 
   background: #f8f9fa; 
  padding: 2rem;
}

.resource-box h3 {
  font-size     :       1.5rem;
  margin-bottom: 1.5rem;
    color: #2c3e50;
}

.resource-box p {
	          color: #555;
  line-height: 1.6;
   margin-bottom   :   1rem;
	}

.related-services {
     padding: 80px 20px;
    background: #f8f9fa;
}

.related-services h2 {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.services-preview {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-preview-card {
    background: white;
    padding: 1.5rem;
   border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-preview-card:hover {
  transform: translateY(-5px);

}

.preview-img {
     width: 100%;
    height: 150px;
	object-fit: cover;
  border-radius: 8px;
  margin-bottom     : 1rem;

}

.service-preview-card h4 {
   font-size: 1.3rem;
   margin-bottom: 1rem;
   color: #2c3e50;
}

.service-preview-card p {
   color: #666;
  line-height : 1.5;
  font-size:    0.95rem;
	
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-content h1 {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .waiting-content {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}.cookies-section, .privacy-section {
    padding: 100px 20px;
  background: #fff;
}

.cookies-section h2, .privacy-section h2 {
   text-align: center;

    font-size: 2.8rem;

  margin-bottom: 3rem;

       color: #2c3e50;
}

.cookies-section h3, .privacy-section h3 {
   font-size: 1.8rem;
    margin-bottom: 1.5rem;
   color: #2c3e50;

}

.cookies-section p, .privacy-section p {
  font-size: 1.1rem;
   margin-bottom: 1.5rem;
  color: #555;
}