*
	{
  margin: 0; 
	   padding: 0; 
	   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
    background-color: #fafafa;
	
}

.container {
    padding :     0 20px;
   max-width: 1200px;
  margin: 0 auto;
}

.main-nav {
  position    :fixed;
   top: 0;
    left:  0;
   right: 0;
  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-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
} 

.nav-wrapper {
  max-width: 1200px; 
	   margin: 0 auto; 
	  display: flex; 
	  justify-content: space-between; 
	    align-items: center; 
	   padding: 15px 20px;
}

.brand-area {
  display: flex;
  align-items: center;

}

.brand-logo {
               height: 45px;
  width: auto;
}

.nav-links  {
  display: flex;
      list-style: none;
   gap: 30px;
}

.nav-links a {
    text-decoration: none;
 color    :    #333;
    font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {

	    color: #2c5aa0;
     }

.nav-links a:before {
  content: '';
	position: absolute;
   bottom     :     -5px;
    left: 0;
      width: 0;
   height: 2px;
  background: #2c5aa0;
               transition    :   width 0.3s ease;
}



.nav-links a:hover:before {
        width: 100%;
}

.menu-toggle    {
	display: none;
  flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {

	    width :     25px;
   height :3px;
    background: #333;
    margin: 3px 0;
  transition: 0.3s;
     }

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}  

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);


}

.hero-banner   {

	  margin-top: 80px;
   padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   display: flex;
   align-items: center;
  min-height: 70vh;


}

.hero-content {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items: center;
}

.hero-content h1
	{
  font-size: 3.2em;
	margin-bottom: 20px;
   font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
   font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-actions {
	 display: flex;
       gap: 20px;
       flex-wrap: wrap;
}

.primary-btn, .secondary-btn  {
  padding: 15px 30px;
   text-decoration: none;
   border-radius: 8px;
   font-weight   :        600;
         transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn    {
  background: #fff;
       color: #2c5aa0;
}

.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 {
  background: white;
   color: #2c5aa0; 

}

.hero-visual img {
   width: 100%;
      height: auto;
	border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.intro-section {
    padding: 80px 20px;
  background:        white; 

}

.intro-section h2 {
  text-align: center;
    font-size: 2.5em;
	margin-bottom: 20px;
  color: #2c5aa0;
}


.intro-section > .container > p {
	text-align: center;
   font-size :       1.1em;
		 max-width    :      800px;
  margin: 0 auto 60px;
    color: #666;
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
   margin-top  :       50px; 

}

.feature-card {
 background: #f8f9fa;
  padding: 30px;
    border-radius: 12px;
    text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-card img {

	    width: 100%;
    height: 200px;
   object-fit: cover;
   border-radius: 8px;
   margin-bottom: 20px;
     }

.feature-card h3 {
  font-size: 1.4em;
   margin-bottom: 15px;
  color: #2c5aa0;
}

.feature-card p {


  color: #666;
    line-height: 1.6;


}

.services-section {
   padding: 80px 20px;
    background: #f8f9fa; 

}

.services-section h2 {
    text-align: center;
  font-size: 2.5em;
    margin-bottom: 50px;
  color: #2c5aa0;
}

.services-list {
   max-width: 800px;
    margin   :  0 auto;
}

.service-item {
  background: white;
		padding: 40px;
	 margin-bottom: 30px;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-item h3 {
   font-size: 1.5em;
  margin-bottom  : 15px;
  color: #2c5aa0;
}

.service-item p{
    margin-bottom: 20px;
   color: #666;
    line-height: 1.6;
}

.service-details {
  flex-wrap: wrap;
    display: flex;
  gap: 20px;
}

.service-details span {
  background: #e3f2fd;
  color: #1976d2;
    padding: 8px 16px;
   border-radius: 20px;
    font-size: 0.9em;
  font-weight: 500;
}

.cta-section {
        padding: 80px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
         color:        white;
}

.cta-section .container {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.3em;
   margin-bottom: 20px;
}

.cta-content p {

  font-size: 1.1em;
   margin-bottom: 30px;
   opacity    :      0.9;


}

.cta-button {
  background: #ff6b35;
  color: white;
    padding: 18px 35px;
  text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
   display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e55a2b; 
	  transform: translateY(-2px); 
	  box-shadow: 0 8px 25px rgba(0,0,0,0.2); 

}

.cta-image img {
  width: 100%;
                    height: auto;
    border-radius: 12px;
}

.method-section {
		background: white;
    padding    :    80px 20px;


	}

.method-section h2 {
    text-align: center;
    font-size: 2.5em;
  margin-bottom: 60px;
    color: #2c5aa0;
}

.method-steps {

	   max-width: 900px; 
   margin: 0 auto;

} 

.step {
	    margin-bottom: 50px;
    display: flex;
    gap: 30px;
  align-items: flex-start;


}

.step-number {
   background   : #2c5aa0;
      color: white;
  width: 60px;
               height: 60px;
  border-radius: 50%;
   display: flex;
  align-items: center;
    justify-content: center;
    font-size: 1.2em;
  font-weight: bold;
    flex-shrink: 0;


}

.step h3 {
               font-size: 1.4em;
  margin-bottom: 10px;
    color: #2c5aa0;

}

.step p {
   color: #666;
  line-height: 1.6;


}

.contact-section  
  {
     padding   :80px 20px;
  background: #f8f9fa;
}

.contact-section h2 {
   text-align :     center;
	font-size: 2.5em;
   margin-bottom   : 50px;
	color: #2c5aa0;
	
}

.contact-wrapper {
    max-width: 1000px;
			margin: 0 auto;
       display: grid;
  grid-template-columns: 1fr 1fr;
               gap: 50px;
}

.contact-info h3  {
 color   :  #2c5aa0;
   font-size: 1.6em;
   margin-bottom: 20px;
}

.contact-info p		{
   color     :  #666;
   margin-bottom: 30px;
  line-height:        1.6;
}

.contact-details {
  margin-top: 30px;
}



.contact-item {
     margin-bottom: 20px;
	}

.contact-item strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 5px;
}

.contact-form {
  background: white;
    padding: 40px;
 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row

{
     display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group    {
  margin-bottom: 25px;
}

.form-group label {
    display     :   block;
        margin-bottom: 8px;
    color: #333;
  font-weight    :        500; 

}

.form-group input,
.form-group select,
.form-group textarea

{
  width: 100%;
  padding: 12px;
    border    :2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1em;
	 transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus     {
	outline: none;
    border-color: #2c5aa0;
}

.submit-btn {


  background: #2c5aa0;
   color: white;
  padding     : 15px 30px;
   border: none;
   border-radius: 6px;
   font-size: 1.1em;
   font-weight: 600;
        cursor: pointer;
  transition: all 0.3s ease;
    width: 100%;}

.submit-btn:hover {
	background: #1e3a6f;
  transform: translateY(-2px);
}

.main-footer
{
  background:    #1a1a1a;
  color: white;
    padding: 50px 20px 20px;
}



.footer-content {
  max-width: 1200px;
	 margin   :        0 auto;
    display: grid;
   grid-template-columns: 1fr 2fr;
	gap: 50px;
        margin-bottom: 30px;
}

.footer-brand .footer-logo {
  height     :  50px;
  width: auto;
  filter: brightness(0) invert(1);
} 

.footer-links {
    display   :    grid;

  grid-template-columns: repeat(3, 1fr);

   gap: 30px;
}

.link-group h4 {
	margin-bottom     : 20px;
  color: #2c5aa0;
}

.link-group ul {
      list-style: none;
}

.link-group li {
   margin-bottom: 10px;
}

.link-group a {
     color     :      #ccc;
	 text-decoration: none;
	 transition: color 0.3s ease;
	}

.link-group a:hover{
    color: #2c5aa0;
}

.footer-bottom {
  max-width: 1200px;
    margin: 0 auto;
     text-align     :center;
  padding-top: 20px;
   border-top: 1px solid #333;
                    color: #999;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
    }
    
    .intro-section h2,
    .services-section h2,
    .contact-section h2,
    .method-section h2 {
        font-size: 2em;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  margin-top :80px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
    color: white;
	 text-align: center;


}

.about-hero-content h1 {
   font-size: 3em; 
   margin-bottom: 20px; 
    font-weight: 700;
}

.about-hero-content p{
    opacity: 0.9;
    margin: 0 auto;
   font-size: 1.3em;
	max-width: 600px;
}

.story-section {
   padding: 80px 20px;
    background: white;
}

.story-content {
    display: grid;
  grid-template-columns   :     1.2fr 1fr;
  gap: 50px;
   align-items: center;
}

.story-text h2 {
  font-size    :  2.4em;
   margin-bottom   :  30px;
  color: #2c5aa0;
}

.story-text p {
  margin-bottom: 25px;

	   line-height: 1.7;

	     color   :   #555;

	  font-size: 1.05em;
}

.story-image img 
 {
    width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mission-section {
    padding: 80px 20px;
    background: #f8f9fa;

}

.mission-section h2 {
  text-align  :       center;
  font-size: 2.5em;
   margin-bottom: 60px;
   color: #2c5aa0;
}

.mission-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.mission-item {
  background: white;
   padding: 35px;
	 border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);

}

.mission-item h3
{
  font-size     :        1.4em;
	margin-bottom: 15px;
    color: #2c5aa0;
}

.mission-item p {
   color: #666;
   line-height: 1.6;
}

.approach-section {


  padding :    80px 20px;
  background: white; 

	}  

.approach-content {
   display: grid;
          grid-template-columns: 1fr 1.2fr;
               gap: 50px;
       align-items: center; 
	
}

.approach-image img {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.approach-text h2 {
   	 font-size: 2.4em;
	margin-bottom: 25px;
    color: #2c5aa0;
	}

.approach-text > p		{
   margin-bottom    :30px;
    line-height: 1.7;
	color: #555;
  font-size: 1.05em;
}

.approach-points {
    margin-top: 30px;
}

.point {


	 margin-bottom: 25px;
    padding-left : 20px;
    border-left: 3px solid #2c5aa0;

} 

.point h4 {
  font-size: 1.2em;
   color: #2c5aa0;
   margin-bottom: 8px;
}

.point p {
    color: #666;
   line-height: 1.6;
}

.values-section {
        padding: 80px 20px;
  background  : #f8f9fa;
}

.values-section h2 {
   font-size: 2.5em;
          margin-bottom: 60px;
    color: #2c5aa0;
    text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {

	  transform: translateY(-5px);
	}

.value-card img {
   width: 100%;
   height: 180px;
	 object-fit: cover;
  border-radius: 8px;
    margin-bottom: 20px;


}

.value-card h3 {
    font-size: 1.4em; 
  margin-bottom: 15px; 
    color: #2c5aa0;

}



.value-card p


{
    color: #666;
  line-height: 1.6;

}

.expertise-section {
     padding: 80px 20px;
  background: white;
}

.expertise-section h2 {
    text-align: center;
     font-size: 2.5em;
    margin-bottom: 40px;
         color: #2c5aa0;
}

.expertise-content > p

{
  text-align:       center;
    font-size: 1.1em;
  max-width: 800px;
    margin: 0 auto 50px;
	color: #555;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
   text-align  :     center;
   padding: 20px;
}

.stat-number {
    font-size   :      3em;
  font-weight: 700;
  color: #2c5aa0;
       margin-bottom: 10px;
}

.stat-label
{
    font-size: 1.1em;
    color: #666;
}

.commitment-section {
  padding: 80px 20px;
    background: #f8f9fa;
}

.commitment-content {

	   max-width: 800px;
   margin: 0 auto;
  text-align: center;


}

.commitment-content h2 {
        font-size: 2.5em;
   margin-bottom: 30px;
  color     :       #2c5aa0;


}



.commitment-content p {
    font-size: 1.1em;
    margin-bottom: 25px;
                    line-height: 1.7;
   color: #555;
}

.thankyou-hero {
   margin-top: 80px;
  padding: 100px 20px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
   text-align     :center;
}

.thankyou-content {
	max-width: 600px;
      margin: 0 auto;
}

.success-icon {
  margin-bottom: 30px;
}

.checkmark {
      width: 80px;

  height     :   80px;

  background: white;

   color  :        #27ae60;

   border-radius: 50%;

	 display: flex;

	align-items: center;

   justify-content: center;

   font-size   :3em;

    font-weight     :   bold;

    margin: 0 auto;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-content h1 {
     font-size: 2.8em;
  margin-bottom: 20px;
	font-weight: 700;
}

.lead-text {
  font-size: 1.2em;
   opacity: 0.9;
    line-height: 1.6;
}

.next-steps-section {
	padding: 80px 20px;
     background: white; 
	
}


.next-steps-section h2 {
			text-align: center;
   font-size: 2.5em;
  margin-bottom: 60px;
    color: #2c5aa0;

}

.steps-timeline {
    max-width: 800px;

	  margin: 0 auto;
}

.timeline-item {
    display: flex;
  gap: 30px;
    margin-bottom: 50px;
   align-items: flex-start;
}

.timeline-number {
	    background: #2c5aa0;
    color: white;
    width: 50px;
  height: 50px;
	 border-radius: 50%;
  display: flex;
    align-items: center;
   justify-content: center;
  font-size: 1.3em;
   font-weight: bold;
    flex-shrink: 0;
     }

.timeline-content h3 {
  font-size: 1.4em;
   margin-bottom: 10px;
    color: #2c5aa0;
}

.timeline-content p {
  color    :    #666;
   line-height: 1.6;
   margin-bottom: 10px; 

}

.timeline-duration {
   font-size: 0.9em;
  color: #27ae60;
  font-weight: 600;
}

.preparation-section {
   padding: 80px 20px; 
	    background: #f8f9fa;
}

.preparation-content {


    align-items   :        center;
  gap: 50px;
      grid-template-columns: 1.2fr 1fr;
   display: grid;
}

.preparation-text h2 {
	    font-size: 2.4em;
    margin-bottom: 25px;
  color: #2c5aa0;

}

.preparation-text > p  {
   margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
    font-size: 1.05em;
}

.preparation-list {
    list-style: none;
	 margin    :        30px 0;
   padding: 0;
}

.preparation-list li {
  margin-bottom: 15px;
  padding-left: 25px;
	 position: relative;
    color: #666;
   line-height: 1.6;
}

.preparation-list li:before {
  content: "→";
    position    : absolute;
       left: 0;
   color  :  #2c5aa0;
  font-weight  :    bold;
}

.preparation-image img {
  width: 100%;
  height   :      auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.resources-section {
  padding: 80px 20px;
  background: white;
}

.resources-section h2
	{
    text-align: center;
   font-size: 2.5em;
  margin-bottom: 30px;
    color: #2c5aa0;
}

.section-intro {
  text-align: center;
  font-size    :    1.1em;
	max-width: 700px;
	margin: 0 auto 50px;
   color: #555;
   line-height: 1.7;
}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
               gap: 40px;
}

.resource-card {
      background   :        #f8f9fa;
    padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;


}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resource-card img {
    width: 100%;
   height: 180px;
      object-fit: cover;
  border-radius     : 8px;
   margin-bottom: 20px;
}

.resource-card h3 {
	  font-size: 1.4em;
          margin-bottom    :    15px;
   color: #2c5aa0;
}

.resource-card p {
   color: #666;
  line-height  :  1.6;
}

.assurance-section {
  padding: 80px 20px;
	background: #f8f9fa;
}

.assurance-content {
   max-width  :   800px;
   margin: 0 auto;
    text-align: center;

}

.assurance-content h2 {
   font-size: 2.5em;
    margin-bottom    :   30px;
   color: #2c5aa0;
}

.assurance-content > p		{
    font-size: 1.1em;
   margin-bottom: 40px;
    line-height: 1.7;
	color: #555;}

.assurance-points {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.assurance-point {
    background: white;
 padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.assurance-point h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
    color: #2c5aa0;
}

.assurance-point p {

  color: #666;
  line-height: 1.6;


}

.cta-thankyou {
    padding     :    80px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
   color: white;
  text-align: center;
}

.cta-thankyou h2 {
  font-size: 2.3em;
	  margin-bottom: 20px;
}

.cta-thankyou > .container > p {
    font-size: 1.1em;
   margin-bottom: 40px;
  opacity:      0.9;
    max-width: 600px;
   margin-left: auto;
                    margin-right: auto;
}

.contact-info-thankyou {
   display: flex;
  justify-content: center;
  gap: 40px;
   margin: 40px 0;
   flex-wrap: wrap;
}

.contact-info-thankyou .contact-item {
    display: flex;
   flex-direction: column;
	 gap: 5px;
    align-items: center;
}

.contact-info-thankyou strong {
   color: #fff;
	font-size: 1.1em; 
	
}

.contact-info-thankyou span
{
    opacity: 0.9;
}

.return-home-btn {
       background: #27ae60;
  color: white;
    padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
	 display: inline-block;
   transition: all 0.3s ease;
    margin-top: 30px;
}

.return-home-btn:hover {
    background: #229954;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2em;
    }
    
    .story-content,
    .approach-content,
    .preparation-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-text h2,
    .approach-text h2,
    .preparation-text h2 {
        font-size: 2em;
    }
    
    .mission-grid,
    .values-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2em;
    }
    
    .contact-info-thankyou {
        flex-direction: column;
        gap: 20px;
    }
    
    .assurance-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 1.8em;
    }
    
    .mission-section h2,
    .values-section h2,
    .expertise-section h2,
    .commitment-section h2,
    .next-steps-section h2,
    .resources-section h2,
    .assurance-section h2,
    .cta-thankyou h2 {
        font-size: 2em;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
}.cookies-section,
.privacy-section {
   padding: 80px 20px;
	   background   :    white;
}

.cookies-section h2,
.privacy-section h2 {
  text-align: center;
   font-size: 2.5em;
  margin-bottom: 30px;
         color: #2c5aa0;
}

.cookies-section h3,
.privacy-section h3 {
    font-size: 1.6em;
	margin-bottom: 15px;
   color: #2c5aa0;
}

.cookies-section p,
.privacy-section p {
   color: #666;
               line-height: 1.6;
    margin-bottom: 20px;
}

.cookies-section ul,
.privacy-section ul {
     margin-bottom: 20px;
   list-style: none;}

.cookies-section ul li,
.privacy-section ul li {
  margin-bottom: 10px;
   color :#666;
    line-height: 1.6;
}

.cookies-section ul li strong,
.privacy-section ul li strong {
	color: #2c5aa0;
}