* {
   margin: 0;
  padding     :   0;
  box-sizing: border-box; 
	
}

body	{
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
   color  :      #2c3e50;
          overflow-x: hidden;
     }

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   position  :   sticky;
   top: 0;
	 z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);}

.navigation-wrapper {
    padding: 0 20px;
}  

.nav-container {
  max-width: 1200px;
   margin: 0 auto;
    display: flex;
  justify-content: space-between;
	align-items: center;
  height     :    70px;
}

.logo-section .main-logo {
   height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
}

.desktop-menu {
  display: flex;

	   gap: 40px;


} 

.nav-link {
     color : white;
  text-decoration: none;
       font-weight: 500;
    font-size: 16px;
   transition: all 0.3s ease;
   position: relative;
}

.nav-link:hover {
   color: #f8f9fa;
  transform: translateY(-2px);
}

.nav-link:after {
  content: '';
   position: absolute;
    bottom: -5px;
  left: 0;
   width: 0;
  height: 2px;
        background: #fff;
	 transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.mobile-burger  
  {
    display:      none;
   flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background  :  white;
   transition: all 0.3s ease;
   border-radius: 2px;
}

.mobile-menu-overlay {
   display: none;
    position: fixed;
   top: 70px;
   left:       0;
   width: 100%;
  height: calc(100vh - 70px);
  background: rgba(102, 126, 234, 0.98);
  backdrop-filter: blur(10px);
}

.mobile-nav-content {
  padding: 60px 20px;
   text-align: center;
}

.mobile-nav-link {
  display: block;
	color: white;
    text-decoration: none;
   font-size: 24px;
    font-weight: 600;
  margin-bottom: 30px;
  opacity   :0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-link

{
  opacity: 1;
  transform: translateY(0);


}

.mobile-nav-link:nth-child(1) {
  transition-delay  :   0.1s; 

}

.mobile-nav-link:nth-child(2) {
  transition-delay    :   0.2s;


}

.hero-banner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding   :     80px 20px;
    min-height: 600px;
        display: flex;
                    align-items: center;
}

.hero-content-wrapper		{
    max-width: 1200px;
    margin     :       0 auto;
  display: grid;
    gap: 60px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.hero-title {

	    color     :white;
   font-weight: 700;
    margin-bottom: 25px;
  font-size: 48px;
   line-height: 1.2;}

.hero-description {


  font-size: 18px;
  color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
     }

.hero-buttons {
   flex-wrap: wrap;
  display: flex;
   gap: 20px;
}

.primary-button, .secondary-button  
  {
   padding: 15px 30px;
   border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
   font-size: 16px;
	 transition: all 0.3s ease;
   display: inline-block;
     text-align: center;
}

.primary-button {
        background: white;
    color: #f5576c;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.secondary-button {
   background: transparent;
	 color: white;
   border: 2px solid white;
}

.secondary-button:hover


{
	 background    :    white;
               color: #f5576c;
  transform: translateY(-3px);
	


}

.hero-image {
       width: 100%;
    height: 400px;
  object-fit: cover;
    border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
	}

.services-showcase {


	 padding: 100px 20px;
  background: #f8f9fa;
}

.services-container {
    max-width  :     1200px;
  margin:   0 auto;
}

.section-heading {
  font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
  color: #2c3e50;
  font-weight :      700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;


}

.service-card {


   background: white;
 border-radius:      15px;
  padding     :    30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;

}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image		{
	width: 100%;
   height: 220px;
	 object-fit: cover;
			border-radius: 10px;
                    margin-bottom: 25px;
	}

.service-title 
 {

	   font-size: 24px;
  font-weight: 600;
   margin-bottom: 15px;
   color: #2c3e50;


}

.service-text {
    font-size: 16px;
   color: #6c757d;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px; 

}

.cta-wrapper {
               max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap :     50px;
   align-items: center;
}

.cta-heading{

  font-size: 36px;
   color: white;
   margin-bottom: 20px;
    font-weight: 700;
     }

.cta-text {

    font-size: 18px;
  color: rgba(255,255,255,0.9);
    margin-bottom    :        30px;
    line-height  :       1.6;


}

.cta-button {
   background: white;
   color     :   #667eea;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
   font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
	
}

.cta-button:hover {
  transform: translateY(-3px);

	  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-image {
  width: 100%;
  height: 300px;
   object-fit: cover;
	border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.programs-overview {
   padding    :    100px 20px;
  background: white;
}

.programs-container {
  max-width: 1000px;
   margin  : 0 auto;
}

.programs-heading {
    color    :  #2c3e50;
  font-size: 42px;
   font-weight: 700;
    text-align: center;
  margin-bottom: 60px; 

}

.programs-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :      40px;
}

.program-item {
	text-align: center;
    padding: 40px 20px;
   border-radius: 15px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    transition: all 0.3s ease;
}

.program-item:hover {
  transform: scale(1.05);
}

.program-name {
	font-size: 24px;
  margin-bottom: 20px;
  font-weight     :        600;
}

.program-details {
      font-size: 16px;
    opacity: 0.95;
	line-height: 1.6;


}

.contact-section {
   background: #f8f9fa;
  padding   :100px 20px;
}

.contact-container {

	    max-width :800px;
  margin: 0 auto;
     }

.contact-intro {
  text-align     :      center;
   margin-bottom: 50px;
}

.contact-heading


{
  font-size: 42px; 
  margin-bottom  :  20px; 
   color: #2c3e50; 
	 font-weight: 700;
}

.contact-subtext {
    font-size: 18px;
   color  :   #6c757d;
	line-height: 1.6;
}

.contact-form {
      background: white;
   padding: 50px 40px;
	border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-row {

    display: grid;
       grid-template-columns: 1fr 1fr;
   gap: 25px;
   margin-bottom: 25px;}

.form-group {

	    display:     flex;

  flex-direction: column;
	}

.form-label     {
   font-weight: 600;
    margin-bottom   :8px;
  color: #2c3e50;
  font-size: 14px;


}

.form-input, .form-select, .form-textarea   {
  padding: 15px;
  border: 2px solid #e9ecef;
    border-radius: 10px;
   font-size: 16px;
  transition: all 0.3s ease;
	background: #f8f9fa;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
   border-color     :  #667eea;
    background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
	resize: vertical;
        min-height  :   120px;
    font-family: inherit;
}

.form-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  color: white;

	   padding: 18px 40px;

	  border: none;

	   border-radius: 50px;

	   font-size: 18px;

	   font-weight: 600;

	    cursor: pointer;

	  transition: all 0.3s ease;

	    width :      100%;

	    margin-top: 20px;
}  

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);

}


.site-footer {
  background: #2c3e50;
      color: white;
   	padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    max-width: 1200px;
	 gap: 50px;
   grid-template-columns: 1fr 2fr;
	margin-bottom: 40px;
    margin: 0 auto;
}

.footer-logo {
   height: 50px;
    width  :   auto;
  filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-info  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-heading  {
   font-weight: 600; 
	    margin-bottom: 20px; 
	  font-size: 18px; 
	         color: #ecf0f1;
}

.footer-links {
                    display     :        flex;
       flex-direction     :     column;
   gap     :      12px;
}

.footer-link {
	color: #bdc3c7;
     text-decoration: none;
   transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-contact .contact-item


{
	 color: #bdc3c7;
    margin-bottom    :       10px;
  font-size   :       15px;
}

.footer-bottom {
    border-top     : 1px solid #34495e;
   padding-top: 20px;
    text-align: center;
}  

.copyright-text {
   color: #95a5a6;
    font-size: 14px;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-burger {
        display: flex;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-heading, .programs-heading, .contact-heading {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-banner, .services-showcase, .programs-overview, .contact-section {
        padding: 60px 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .primary-button, .secondary-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .programs-layout {
        grid-template-columns: 1fr;
    }
}.nav-link.active {
  transform: translateY(-2px);
   color: #f8f9fa;


}

.nav-link.active:after {
   width: 100%;
}

.about-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
   padding: 120px 20px 80px;
	text-align: center;
}

.about-hero-wrapper {
  max-width     : 900px;
    margin: 0 auto;
}

.about-title {
    font-size : 52px;
   font-weight: 700;
    color: white;
    margin-bottom: 30px;
   line-height: 1.2;
}

.about-subtitle {
    font-size: 22px;
  color: rgba(255,255,255,0.9);
  line-height    :  1.6;
  max-width: 700px;
   margin: 0 auto; 
	
}

.company-story {
   padding: 100px 20px;
  background: white;
}

.story-container {
  max-width   :      1200px;
  margin: 0 auto;
}

.story-content {
  display: grid;
    grid-template-columns  : 1fr 1fr;
	gap: 60px;
   align-items     :      center;
}


.story-heading {
   font-size    :        42px;
    font-weight: 700;
     color: #2c3e50;
   margin-bottom  :      30px;
}

.story-paragraph {
   line-height: 1.7;
       color: #5a6c7d;
   font-size: 18px;
  margin-bottom: 25px;
}

.story-image {
            width: 100%;
  height : 400px;
                    object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);



}

.values-section {
	background: #f8f9fa;

	    padding: 100px 20px;
}

.values-container {
       max-width   :    1100px;
    margin: 0 auto;
	
}

.values-heading {
  font-size: 42px;
    text-align: center;
    font-weight: 700;
  color : #2c3e50;
  margin-bottom: 70px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.value-card

{
   background: white;
    padding: 45px 35px;
   border-radius: 15px;
	 text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.value-title {


  font-size: 24px;
	   font-weight: 600;
	  color: #2c3e50;
	   margin-bottom   :   20px;
	}

.value-description {


   font-size: 16px;

    line-height   :       1.7;

	color: #6c757d;
	}

.methodology-section {
	 padding: 100px 20px; 
	    background: white;


}

.methodology-container {
 max-width: 1200px;
  margin: 0 auto;
}

.methodology-layout {
    align-items: center;
   gap: 60px;
    display: grid;
  grid-template-columns: 1fr 1fr; 
	
}

.methodology-heading {
 font-size: 42px;
    font-weight: 700;
   color: #2c3e50;
  margin-bottom: 40px;
}

.methodology-steps {
  display: flex;
  flex-direction: column;
   gap: 35px;
}

.method-step {
   border-left: 4px solid #4facfe;
   padding-left: 25px;
}

.step-title {
        font-size: 20px;
   font-weight: 600;
	color: #2c3e50;
               margin-bottom: 12px;
	
}

.step-description {
  font-size: 16px;
  line-height: 1.6;
    color  :     #6c757d;
}

.methodology-image    {
  width: 100%;
  height :    450px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.expertise-showcase {
		background: #f8f9fa; 
	   padding: 100px 20px;
}

.expertise-container {
     max-width: 1200px;
	  margin: 0 auto;

}



.expertise-heading {
   font-size: 42px;
    text-align: center;
  font-weight: 700;
   color: #2c3e50;
  margin-bottom:70px;
	}

.expertise-areas {
  display: flex;
	flex-direction: column;
  gap   :      50px;
}

.expertise-item {
  display  :grid;
   grid-template-columns: 300px 1fr;
   gap: 40px;
  align-items: center;
  background: white;
   padding: 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.expertise-item:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.expertise-item:nth-child(even) .expertise-image {
	order     : 2;
}

.expertise-item:nth-child(even) .expertise-content  
  {
   	order: 1;

}

.expertise-image {
   width: 100%;
	   height    :    200px;
	    object-fit: cover;
	      border-radius: 10px;
}

.expertise-title {
	font-size:     24px;
  font-weight: 600;
   color: #2c3e50;
   margin-bottom: 15px;
}

.expertise-text {
   font-size     :       16px;
      line-height: 1.6;
     color: #6c757d;
}

.commitment-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
        color: white; 

	}

.commitment-wrapper {
  max-width: 1000px;
  margin: 0 auto;
   text-align: center;
}

.commitment-heading {
    font-size :  42px;
    font-weight: 700;
   margin-bottom     :        30px;
}

.commitment-text
	{
  font-size   :     18px;
  line-height: 1.7;
   margin-bottom: 30px;
      opacity: 0.95;
}

.commitment-stats {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	  gap : 40px;
	  margin-top: 60px;
}

.stat-item    {
  text-align  :      center;
}

.stat-number {
    font-size: 48px;
	font-weight:      700;
    color    :   white;
  margin-bottom: 10px;
}

.stat-label     {
   font-size: 16px;
    opacity   :     0.9;
}

.thankyou-hero {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
         padding     :120px 20px;
    text-align: center;
  min-height: 500px;
	display: flex;
  align-items: center;
}

.thankyou-container {
  max-width    :    800px;
    margin: 0 auto;


}

.success-icon {
    margin-bottom: 40px;
}

.checkmark-circle {
  width: 80px;
               height: 80px;
  border-radius: 50%;
  background: white;
	 margin: 0 auto;
    display :   flex;
  align-items: center;
          justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



.checkmark {
    width   :      25px;
   height: 40px;
   border:        solid #56ab2f;
       border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.thankyou-title {
    font-size: 48px;
    font-weight: 700;
   color: white;
   margin-bottom    :   25px;
  line-height: 1.2; 
	
}

.thankyou-message {
               font-size: 20px;
  color: rgba(255,255,255,0.9);
	line-height: 1.6;
   max-width: 600px;
  margin: 0 auto;}

.next-steps {
  padding: 100px 20px;
    background: white;
}

.steps-container {
    max-width :    1000px;
   margin: 0 auto;

}

.steps-heading {
    font-weight: 700;
	  color:    #2c3e50;
		 text-align: center;
	    font-size: 42px;
	    margin-bottom: 70px;
}

.steps-timeline {
   display: flex;
    flex-direction: column;
   gap: 40px;
}

.timeline-step {


   display: grid;
   gap: 30px;
   align-items: flex-start;
  grid-template-columns: 80px 1fr;}  

.step-number {
  width: 60px;
      height     :    60px;
      border-radius: 50%;
     background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      color: white;
      display     :    flex;
       align-items: center;
     justify-content: center;
       font-size: 24px;
      font-weight: 700;
     margin-top: 10px;
}

.step-content h3 {
	 font-weight   :  600;
  margin-bottom: 15px;
      color: #2c3e50;
 font-size: 24px;


     } 

.step-description {
	   font-size    :   16px;
   line-height     : 1.6;
  color     :       #6c757d;
    margin-bottom: 10px;}

.step-timing {
   font-size: 14px;
   font-weight: 600;
	color: #4facfe;
  background: rgba(79, 172, 254, 0.1);
    padding: 5px 15px;
  border-radius: 20px;
  display   : inline-block; 

}

.preparation-tips {
			 background: #f8f9fa;
	padding: 100px 20px;


}

.tips-container {
   max-width: 1200px;
  margin    :   0 auto;
}

.tips-layout {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items   : center;
}

.tips-heading {
  font-size: 42px;
   font-weight :       700;
     color: #2c3e50;
  margin-bottom: 25px;
}

.tips-intro {
    font-size   :     18px;
	color: #6c757d;
   margin-bottom     :        40px;
  line-height: 1.6;
}


.tips-list
{
    display: flex;
    flex-direction: column;
   gap: 30px;
}

.tip-item {
   padding-left: 25px;
  border-left: 4px solid #56ab2f; 
	
}

.tip-title {
   font-size: 20px;
     font-weight: 600;
       color: #2c3e50;
       margin-bottom: 10px;
     }

.tip-text

{
   font-size: 16px;
   line-height: 1.6;
   color: #6c757d;
} 

.preparation-image {
   width: 100%;

	  height: 400px;

	   object-fit: cover;

	    border-radius   : 15px;

	  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.additional-resources {
    padding :        100px 20px;
    background: white;
} 

.resources-container {


      max-width: 1200px; 
   margin: 0 auto;
}

.resources-heading {
    font-size  :     42px;
    text-align: center;
    font-weight: 700;
    color: #2c3e50;
   margin-bottom    :   70px;

}

.resources-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;

}

.resource-card {
  background: white;
  border-radius   :15px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}



.resource-image {
	 width: 100%;
  height: 200px;
				 object-fit: cover;
}

.resource-content     {

	    padding   :        30px;

}

.resource-title {
    font-size     :       22px;
  font-weight: 600;
  color: #2c3e50;
   margin-bottom: 15px;
}

.resource-text


{
   font-size  :  16px;
   line-height: 1.6;
  color: #6c757d;
}

.contact-reminder{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
}

.reminder-wrapper {
    max-width: 800px;
    margin: 0 auto;
   text-align: center;
   color    :  white;
}

.reminder-heading {
  font-size  :    36px;
   font-weight: 700;
    margin-bottom: 25px;
}

.reminder-text {
    font-size: 18px;
   line-height: 1.6;
    margin-bottom: 40px;
   opacity: 0.95;

}

.contact-info {
  display: flex;
   justify-content:    center;
	 gap: 50px;
      margin-bottom: 40px;
   flex-wrap: wrap;
}

.contact-detail {
   font-size: 16px;
    opacity: 0.9;
}

.return-home-btn {
   background: white;
  color: #667eea;
  padding   : 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
   font-size    : 16px;
  display: inline-block;
   transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.return-home-btn:hover {
	  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);}@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .story-content, .methodology-layout, .tips-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-item, .expertise-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-item:nth-child(even) .expertise-image,
    .expertise-item:nth-child(even) .expertise-content {
        order: initial;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .thankyou-title {
        font-size: 32px;
    }
    
    .thankyou-message {
        font-size: 18px;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero, .company-story, .values-section, .methodology-section, .expertise-showcase, .commitment-section {
        padding: 60px 15px;
    }
    
    .thankyou-hero, .next-steps, .preparation-tips, .additional-resources, .contact-reminder {
        padding: 60px 15px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .story-heading, .values-heading, .methodology-heading, .expertise-heading, .commitment-heading, .steps-heading, .tips-heading, .resources-heading {
        font-size: 32px;
    }
    
    .thankyou-title {
        font-size: 28px;
    }
    
    .value-card, .expertise-item {
        padding: 30px 20px;
    }
}.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 {

	               color:    #7f8c8d;
     margin-bottom:     1.5rem;
  line-height     :   1.7;
          font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}