* {
   margin: 0;
	 padding: 0;
          box-sizing:    border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
          color: #2c3e50;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
	
}

.main-navigation {
  position     :       fixed;
   top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
   display :    flex;
  justify-content: space-between;
  align-items   :center;
   padding: 1rem 2rem;
   max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
	 height: 45px; 
	   width: auto; 
	
}

.nav-links {
  display     :       flex;
	 gap: 2rem;
}

.nav-links a {

	 transition   :  color 0.3s ease;
   color: #34495e;
  position: relative;
    text-decoration: none;
  font-weight: 500;}

.nav-links a::after   {
  content: '';
	position: absolute;
   width: 0;
	height: 2px;
   bottom: -5px;
    left: 0;
  background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
	  width: 100%;


}

.burger-menu {
      display: none;
   flex-direction: column;
    cursor: pointer;
  gap: 4px;
}

.burger-line {
       width: 25px;
  height: 3px;
	background: #34495e;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
  flex-direction  :  column;
	background: white;
   padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-menu a{
	 padding: 0.8rem 0;
                    text-decoration: none;
   color: #34495e;
   border-bottom :    1px solid #ecf0f1;
}

.hero-section {
   margin-top: 80px;
	padding: 5rem 2rem;
	min-height: 90vh;
   display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {


	 max-width: 1400px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
	align-items: center;}



.hero-text h1
{


  font-size: 3.5rem;
  font-weight: 700;
     color: white;
  margin-bottom     : 1.5rem;
    line-height: 1.2;

}

.hero-description {
	 font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
  display: flex;
   gap: 1rem;
}

.cta-button {
        padding: 1rem 2rem;
  text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
  transition    :all 0.3s ease;
   display: inline-block; 
	
}

.cta-button.primary {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
   color: white;
}

.cta-button.secondary {
   background: transparent;
   color: white;
         border: 2px solid white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
	
}

.container  
  {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-overview {
    padding: 6rem 0;
	 background: white;
}

.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;
  margin-top     :   4rem;}

.service-item {
   background: #f8f9fa; 
	 padding: 2rem; 
 border-radius: 12px; 
   text-align: center; 
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-item img {
  width: 100%;
   height: 200px;
  object-fit:       cover;
   border-radius: 8px;
  margin-bottom  :   1.5rem;


}

.service-item h3 {
   font-size:  1.5rem;
  margin-bottom: 1rem;
	color: #2c3e50;
}

.transformation-process {
    padding :6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.process-content {
   display: grid;
    align-items: center;
   grid-template-columns   :  1fr 1fr;
  gap    :      4rem;
}

.process-text h2 {
        font-size: 2.5rem;
 color: #2c3e50;
	margin-bottom: 1.5rem;
}

.process-text p {
	    font-size   :1.1rem;
    color: #5a6c7d;
   margin-bottom: 2rem;
	}



.process-steps {


	 space-y: 1.5rem;
	}

.step {
	    padding: 1.5rem;
  background: white;
   border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
     }  

.step h4 {
    color: #667eea;
	 font-size: 1.2rem;
   margin-bottom: 0.5rem;
}

.process-image img {

  width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);}



.cta-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
}

.cta-content h2 {
    font-size     :  2.5rem;
    color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
   margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
	 margin-right: auto;
}

.cta-button.large {
               font-size    :      1.1rem;
   padding: 1.2rem 2.5rem;
}

.testimonials {
                    padding :    6rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
   font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-item		{
   background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
    border-left: 4px solid #667eea; 

}

.testimonial-item p {
   font-style: italic;
   margin-bottom :      1rem;
  color: #5a6c7d; 

}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}  

.contact-section {
		 padding: 6rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	}

.contact-section h2 {
          text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color   :    #2c3e50;
}

.contact-content {
          display: grid;
      grid-template-columns: 1fr 1fr;
     gap: 4rem;
}

.contact-info h3, .contact-form h3 {
 font-size: 1.5rem;
   margin-bottom: 2rem;
 color: #2c3e50;
}

.contact-item 
 {
  margin-bottom: 1.5rem;
}

.contact-item strong{
	color: #667eea;
  display    :        block;
  margin-bottom   :     0.5rem; 
	
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 1rem;
	border: 2px solid #e9ecef;
   border-radius: 8px;
	 font-size :  1rem;
  transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline  :       none;
    border-color: #667eea;
}

.submit-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
 color: white;
   padding: 1rem 2rem;
    border: none;
       border-radius: 8px;
   font-size    :   1.1rem;
    font-weight: 600;
    cursor    :      pointer;
   transition: all 0.3s ease;
   width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.main-footer {
    background: #2c3e50;
  color: white;
  padding   :3rem 0 1rem;
}

.footer-content {
	max-width: 1400px;
    margin: 0 auto;
   padding: 0 2rem;
   display: grid;
	grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
} 

.footer-logo {
    height: 40px;
	 margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  margin-bottom:        1rem;
  color: #ecf0f1;
}

.footer-section ul
{
	   list-style: none;
     }

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
   color    :     #bdc3c7;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-info p {
   color: #bdc3c7;
   margin-bottom   :        0.5rem;
}



.footer-bottom	{
  text-align  :  center;
         padding-top   :     2rem;
   border-top: 1px solid #34495e;
   color: #95a5a6;
          max-width     :   1400px;
   margin: 0 auto; 
	
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.about-hero  
  {
   margin-top: 80px;
    padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
  text-align: center;
}

.about-hero-content h1 
 {

	 font-size: 3rem;
               margin-bottom: 1rem;
    font-weight: 700;
     }

.hero-subtitle {
	 font-size    :        1.3rem;
    opacity: 0.9;
    max-width: 700px;
   margin: 0 auto;
  line-height: 1.6;

}

.mission-section {
     padding: 5rem 0;
   background: white; 

}

.mission-content

{

   display: grid;
    grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;

}

.mission-text h2 {
          font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.mission-text > p {

  font-size: 1.1rem;
    color: #5a6c7d;
  margin-bottom: 2.5rem;
   line-height: 1.7;
	}

.values-list {
  display: flex; 
	  flex-direction: column; 
	  gap: 1.5rem;
}

.value-item {

   padding: 1.5rem;
  background: #f8f9fa;
   border-radius: 10px;
   border-left: 4px solid #667eea;
}

.value-item h4 {
    color: #2c3e50;
	font-size: 1.2rem;
    margin-bottom     :   0.5rem;
}

.value-item p {
  color: #5a6c7d;

    line-height: 1.6;
} 

.mission-image img  
  {
   width: 100%;
    border-radius   :        12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.approach-section    {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);}

.approach-section h2 {
  text-align: center;
	 font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
}

.approach-item {
  background:   white;
  padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-content h3 {
  color: #667eea;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.approach-content p {
  color: #5a6c7d;

	          line-height: 1.7;
}

.story-section {
    padding: 5rem 0;
   background: white;
}

.story-content {
    gap: 4rem;
         display: grid;
   align-items: center;
    grid-template-columns: 1fr 1.2fr;
}

.story-image img {

	  width: 100%;
	border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);}

.story-text h2 {
    font-size: 2.5rem;
   color: #2c3e50;
               margin-bottom: 2rem;
}

.story-text p {
                    font-size    :1.1rem;

	color: #5a6c7d;

		 margin-bottom: 1.5rem;

    line-height: 1.7;
}

.methodology-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white; 
	
}

.methodology-section h2 {
   text-align: center;
  font-size: 2.5rem;
   margin-bottom: 4rem;
}

.methodology-steps {
    max-width: 900px;
  margin: 0 auto; 
	
}

.method-step   {
   display: flex;
    align-items: flex-start;
   gap: 2rem;
  margin-bottom: 3rem;
   padding: 2rem;
  background: rgba(255,255,255,0.1);
   border-radius: 12px;
  backdrop-filter: blur(10px); 

}

.step-number {
   font-size: 2rem;
   font-weight: 700;
  color: #fff;
  min-width: 60px;
    height: 60px;
   display: flex;
   align-items     :        center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.step-content h3 {
               font-size: 1.3rem;
   margin-bottom: 0.8rem;
    color: white;
}

.step-content p {


  color: rgba(255,255,255,0.9);
  line-height: 1.6;


}

.impact-section {
  padding: 5rem 0;
   background: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
   align-items: center;
}


.impact-text h2 {
   font-size: 2.5rem;
   color  :#2c3e50;
  margin-bottom: 2rem;
}

.impact-text > p {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 3rem;
   line-height: 1.7;
}

.impact-stats     {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
    border-radius: 10px;
  background: #f8f9fa;
   padding: 1.5rem;
}

.stat-number {


  font-size: 2.5rem;
  font-weight : 700;
	color: #667eea;
  margin-bottom: 0.5rem;}  

.stat-label {
     color: #5a6c7d;
  font-size: 0.9rem;

}

.impact-image img {
 width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.thank-you-hero {

  margin-top: 80px;
          padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;

}


.thank-you-content  {
  max-width: 600px;
   margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.check-mark	{
   width: 80px;
    height: 80px;
    margin: 0 auto;
               background: #27ae60;
  border-radius: 50%;
     position: relative;
}

.check-mark::after {
  content: '';
   position: absolute;
	left: 25px;
 top: 35px;
   width: 15px;
   height: 25px;
    border: solid white;
    border-width   :   0 4px 4px 0;
  transform: rotate(45deg);
}

.thank-you-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
	 font-weight: 700;
}

.thank-you-message {
   font-size: 1.2rem;
    opacity: 0.9;
        line-height: 1.7;
}

.next-steps {
    padding: 5rem 0;
  background: white;
}

.next-steps h2 {
  text-align: center;
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom   :   4rem;
}

.steps-timeline {


    max-width: 800px;
   margin: 0 auto;


}

.timeline-item {
					display: flex;
   align-items: flex-start;
  gap: 2rem;
  margin-bottom :     3rem;
	padding: 2rem;
    background: #f8f9fa;
	border-radius :        12px;
  position: relative;
}



.timeline-icon {
    width: 50px; 
  height: 50px; 
  background: linear-gradient(45deg, #667eea, #764ba2); 
	 color: white; 
    border-radius: 50%; 
  display: flex; 
   align-items: center; 
	justify-content: center; 
   font-weight: 700; 
    font-size: 1.2rem; 
	min-width: 50px;
}

.timeline-content h3 {
  color: #2c3e50;
  font-size: 1.3rem;
   margin-bottom    :       0.8rem;
}

.timeline-content p {
	color: #5a6c7d;
   line-height: 1.6;
}

.while-you-wait {
                    padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.while-you-wait h2 {
  text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.wait-content
	{
    display: grid;
  gap: 4rem;
    align-items    :  center;
   grid-template-columns: 1.2fr 1fr;
}

.wait-text > p {

  font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;

}

.resource-list {
    margin-bottom: 3rem;
}

.resource-item {
    padding: 1.5rem;
  background: white;
                    border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
	
}

.resource-item h4 {
    color: #667eea;
  font-size: 1.2rem;
   margin-bottom   :   0.5rem;
}

.resource-item p {
       color: #5a6c7d;
	    line-height: 1.6; 

}

.back-links {
    display    :   flex;
       gap: 1rem;
}

.wait-image img {
	    width     :     100%;
    border-radius   :        12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
     }

.contact-reminder {
   padding: 4rem 0;
   background  :white;
  text-align: center;
	
}

.reminder-content h2	{
  font-size: 2rem;
    color: #2c3e50;
   margin-bottom: 1rem;
}

.reminder-content > p {
	font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom   : 2rem;
	max-width: 600px;
  margin-left: auto;
   margin-right: auto;
}

.contact-details {
    display: flex;
   justify-content: center;
   gap     :        3rem;
   margin-top: 2rem;
}

.contact-details .contact-item {
  text-align: left;
}

.contact-details .contact-item strong {
  color     : #667eea;
    display: block;
   margin-bottom     :  0.5rem;
}

.contact-details .contact-item span {
   color: #2c3e50;
    font-weight: 500;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .story-content,
    .impact-content,
    .wait-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .method-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .back-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle,
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .approach-item,
    .timeline-item {
        padding: 1.5rem;
    }
    
    .method-step {
        padding: 1.5rem;
    }
}.policySection {
    padding: 80px 2rem;
               background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
	   margin: 0 auto;
	    text-align: left;
}

.policyContainer h2 {
    font-size: 2.5rem;
         color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
    margin-bottom: 1.5rem;
   color: #7f8c8d;
   font-size   :     1.1rem;
  line-height: 1.7;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}