* {
    margin: 0;
    padding: 0;
   box-sizing     :    border-box;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
               color: #333;
  background: #ffffff;
}

.primary-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 rgba(0,0,0,0.1);
     }

.primary-navigation.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;
	 padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.company-logo {


  height: 45px;
    width: auto;}

.navigation-links {
   display: flex;
    list-style: none;
   gap: 40px;
}

.navigation-links a {
   text-decoration: none;
  color: #333;
  font-weight: 500;
    transition:     color 0.3s ease;
    position: relative;
}


.navigation-links a:hover {
	  color: #2c5aa0;
}

.navigation-links a:after {
  content: '';
    position  :absolute;
    width: 0;
    height: 2px;
  bottom   :        -5px;
  left: 0;
   background-color:    #2c5aa0;
	 transition: width 0.3s ease;
}

.navigation-links a:hover:after {
   width: 100%;
}

.burger-menu {

  gap: 4px;
  display: none;
  flex-direction: column;
  cursor   :pointer;
     }

.burger-menu span {
   width: 25px;
  height  :3px;
  background: #333;
  transition: 0.3s;
}

.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);
	}

.hero-section {

	        padding: 120px 20px 80px;
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
  min-height  :   90vh;
     }

.hero-content h1 {
   font-size:      3.2rem;
	font-weight: 700;
  line-height:        1.2;
	 margin-bottom: 24px;
   color   :    #1a1a1a;
}

.hero-content p {
	 font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
   line-height     :     1.7;
}

.cta-buttons {
  display   :flex;

	 gap: 20px;
}

.primary-btn, .secondary-btn

{
	text-decoration: none;
               border-radius: 8px;
               padding  :       16px 32px;
  border: 2px solid #2c5aa0;
     font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {

	   background: #2c5aa0;
	color: white;}

.primary-btn:hover {
      background: #1e3f73;
  transform: translateY(-2px);
     }

.secondary-btn	{
  background: transparent;
   color: #2c5aa0;
	}

.secondary-btn:hover {
   background: #2c5aa0;
  color: white;


}

.hero-image img {
  width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-section    {
   padding: 100px 20px;
  background: #f8f9fa;
}

.section-container {
	 max-width:    1200px;
   margin: 0 auto;
}

.services-section h2 {
	text-align: center;
 font-size: 2.5rem;
    margin-bottom: 60px;
  color: #1a1a1a;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap     :  30px;
}



.service-card {
    background: white;
      padding: 40px 30px;
  border-radius:        12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
          transition: transform 0.3s ease;
}

.service-card:hover {


  transform: translateY(-5px);

}

.service-card h3 {
	 font-size: 1.4rem;
    margin-bottom: 15px;
   color: #2c5aa0;
}

.service-card p {


   color: #666;
  line-height: 1.6;

}

.strategy-section {


    padding: 100px 20px;

}

.content-wrapper  
  {
    max-width: 1200px;
   margin: 0 auto;
      display    : grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
}

.text-content h2 {
  font-size: 2.3rem;
   color: #1a1a1a;
   margin-bottom: 30px;
}

.text-content p {
   font-size     : 1.1rem;
    margin-bottom: 30px;
    color     :   #666;
   line-height: 1.7;
}

.benefits-list {
  list-style: none; 
	
}

.benefits-list li {
   padding: 10px 0;
    color: #555;
  position: relative;
   padding-left: 25px;
}

.benefits-list li:before {
  content: '✓';
    position :   absolute;
   left: 0;
    color: #2c5aa0;
   font-weight   :  bold;


	}

.image-content img {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.workshop-section {
	    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;


     }

.workshop-content {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.workshop-image img {
   height: auto;
  width: 100%;
   border-radius   :  12px;


}

.workshop-text h2 {
       font-size  :    2.3rem;
                    margin-bottom: 25px;
     }

.workshop-text p

{
    font-size: 1.1rem;
   margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.workshop-features {
    display:   flex;
  flex-direction: column;
   gap: 25px;
}

.feature-item h4 {
    font-size: 1.3rem;
   margin-bottom     :     8px;
	}

.feature-item p {


    font-size: 1rem;
    opacity: 0.8;


}

.portfolio-management {
	   padding: 100px 20px;
    background: #f8f9fa;


}

.portfolio-container 
 {
  max-width: 1200px;

    margin: 0 auto;
}

.portfolio-management h2 {
    text-align: center;
	 font-size: 2.5rem;
  margin-bottom: 60px;
   color: #1a1a1a;
}

.portfolio-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
} 

.portfolio-item {
   background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}

.portfolio-item img {
    width: 100%;
  height: 250px;
   object-fit: cover;
}

.portfolio-details {
     padding: 30px; 

}

.portfolio-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.portfolio-details p {
  color: #666;
    line-height: 1.6;
}

.cta-section {
	 padding: 100px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
  text-align: center;
   color: white;
}

.cta-content {
    max-width     :   800px;
    margin    :  0 auto;
}

.cta-content h2 {
	 font-size: 2.5rem;
  margin-bottom   :       25px;
}

.cta-content p {


   font-size: 1.2rem;
  margin-bottom: 40px;
    line-height: 1.7;
   opacity: 0.9;


}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
   background: white;
    color: #2c5aa0;
   text-decoration: none;
    border-radius: 8px;
 font-weight:600;
	 transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
        padding: 100px 20px;
}

.contact-container {
   max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
  text-align     :    center;
  font-size: 2.5rem;
    margin-bottom: 60px;
  color    :        #1a1a1a;
}

.contact-wrapper
{
   display: grid;
 grid-template-columns:   1fr 2fr;
   gap: 60px;
}

.contact-info h3 {
   font-size: 1.5rem;
  margin-bottom: 30px;
	color     :#2c5aa0;
}

.contact-item {
   margin-bottom: 20px;
    color: #666;
}

.contact-item strong {
       color: #333;}

.contact-form {
	background: #f8f9fa;
    padding: 40px;
  border-radius    :12px; 

}

.form-group {
   margin-bottom:        25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea     {
   width: 100%;
   padding: 12px 16px;
   border: 2px solid #ddd;
   border-radius: 6px;
    font-size: 1rem;
    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: 16px 32px;
	 border: none;
   border-radius: 6px;
   font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}



.submit-btn:hover {
    background: #1e3f73;
  transform: translateY(-2px);
}

.site-footer {
	 padding: 60px 20px 20px;
	   color: white;
	  background: #1a1a1a;
}

.footer-content {
    max-width    :       1200px;
  margin: 0 auto;
   display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
   margin-bottom: 40px;
}

.footer-logo {

	    height    :     40px;
    width: auto;
  filter: brightness(0) invert(1);
    margin-bottom   :  20px;
     }

.footer-section h4 {
    margin-bottom: 20px;
	font-size: 1.2rem;
    color: #2c5aa0; 
	
}

.footer-section ul {
    list-style: none;
} 

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
   color: white; 
	
}

.footer-section p{
  color     :  #ccc;
      line-height: 1.6;


}

.footer-bottom {
   text-align: center; 
    padding-top: 20px; 
  border-top: 1px solid #333; 
    color: #999; 
	
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navigation-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .navigation-links.active {
        left: 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workshop-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}.about-hero 
 {
	padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   text-align:      center;
}

.about-hero-content {
  max-width: 800px;
               margin: 0 auto;
}


.about-hero h1 {
   font-size    :    3rem;
  font-weight     :       700;
	margin-bottom   :  30px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 1.3rem;
   color: #666;
    line-height: 1.7;
}

.company-story		{
    padding: 100px 20px;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
	display   :  grid;
  grid-template-columns:        2fr 1fr;
    gap: 60px;
  align-items: center;
}  

.story-content h2 {
   font-size   :   2.5rem;
   margin-bottom: 30px;
	 color: #2c5aa0;
}

.story-content p {
    font-size: 1.1rem;
  margin-bottom: 25px;
    color: #555;
  line-height: 1.7;
}

.story-image img {
   width: 100%;
   height :    auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-values {
  padding: 100px 20px;
    background: #f8f9fa;
}

.mission-container {
  max-width: 1200px;
    margin: 0 auto;
}

.mission-values h2 {
    text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
                    color: #1a1a1a;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.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;
   margin-bottom: 15px;
      color: #2c5aa0;
}

.value-card p {
	color: #666;
   line-height: 1.6;
}

.expertise-section {


    padding: 100px 20px; 
}

.expertise-container {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
       gap: 60px;
    align-items: start;
}

.expertise-text h2   {
    font-size: 2.3rem;
   margin-bottom  :        25px;
     color: #1a1a1a;
} 

.expertise-text p {
   font-size: 1.1rem;
   margin-bottom: 30px;
  color: #666;
  line-height: 1.7;
}

.expertise-areas h4

{
  font-size: 1.3rem;
  margin-bottom: 20px;
          color:      #2c5aa0;
}

.expertise-areas ul
	{
   list-style: none;
   padding-left: 0;
}

.expertise-areas li {
          padding: 8px 0;
  color:       #555;
  position: relative;
	padding-left: 25px;
}

.expertise-areas li:before     {
  content: '•';
   position: absolute;
   left: 0;
    color: #2c5aa0;
   font-weight: bold;
   font-size: 1.2rem;
}

.expertise-image img {
    width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.approach-methodology{
    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.approach-container {
   max-width :        1200px;
    margin    :     0 auto;
}

.approach-methodology h2 {
    text-align  :center;
       font-size: 2.5rem;
  margin-bottom   :  60px;
	
}

.methodology-steps{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;}

.step-item {
	    text-align: center;
  padding  :        30px 20px;
     }

.step-number {
   display: inline-block;
   width: 60px;
    height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
   line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
      margin-bottom  :       20px;
	
}

.step-item h3 {


   font-size: 1.3rem;
	 margin-bottom:  15px;

}

.step-item p {
    opacity: 0.9;
      line-height: 1.6;
}

.success-numbers {
  padding: 100px 20px;
   background: #f8f9fa;
}

.numbers-container {

  max-width: 1200px;
   margin: 0 auto;
  text-align: center; 
	}

.success-numbers h2 {

	   color: #1a1a1a;
   margin-bottom: 60px;
   font-size: 2.5rem;

}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 40px;
}

.stat-item {
   background: white;
	padding: 40px 20px;
     border-radius:     12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.stat-number {
   color: #2c5aa0;
   font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;

}

.stat-label {
   font-size: 1.1rem;
  color: #666;
}

.commitment-section {
  padding: 100px 20px;
}

.commitment-content {
   max-width: 1200px;
		margin: 0 auto;
     display: grid;
   grid-template-columns: 1fr 1fr;
   gap   :  60px;
   align-items: center;
}

.commitment-image img {
	   width: 100%;
  height     :        auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}

.commitment-text h2 {


  font-size :   2.3rem;
               margin-bottom: 25px;
  color: #1a1a1a; 

}

.commitment-text p {
      font-size    : 1.1rem;
   margin-bottom: 25px;
   color: #666;
  line-height: 1.7;
}

.commitment-highlight {

	background: #f8f9fa;
    padding: 25px;
    border-radius :       8px;
	 border-left: 4px solid #2c5aa0;
  margin-top: 30px;
	}

.commitment-highlight h4 {
   font-size   :   1.2rem;
    margin-bottom     : 10px;
    color: #2c5aa0;
}

.commitment-highlight p {
      margin-bottom: 0;

	  color: #555;
	}

.thankyou-hero {
        padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   min-height: 100vh;
  display     :     flex;
               align-items: center;
}

.thankyou-container {
   max-width: 1200px;
    margin: 0 auto;
         display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items     :       start;
}

.thankyou-content {
   text-align: left;
}

.success-icon {
     margin-bottom :       30px;
}

.checkmark {
  width: 80px;
    height: 80px;
    border-radius: 50%;
   background: #28a745;
   position: relative;
  margin: 0 auto 30px;
} 

.checkmark:after {
  content: '';
  position: absolute;
   top: 20px;
   left: 30px;
   width: 20px;
    height: 35px;
   border: solid white;
	border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.thankyou-content h1 {
   font-size: 2.8rem;
   font-weight: 700;
    margin-bottom: 20px;
  color: #1a1a1a;
   text-align: center;
}

.thankyou-subtitle {
    font-size: 1.3rem;
   color: #666;
   margin-bottom: 50px;
    text-align: center;
}

.next-steps {
    margin-bottom: 50px;
}  

.next-steps h2 {
    margin-bottom   :    30px;
   font-size: 2rem;
  color: #2c5aa0;
}

.steps-timeline {
	  display: flex;
   flex-direction: column;
  gap: 25px;


}

.timeline-item {

	   display: flex;
   align-items: start;
	gap: 20px;}

.timeline-dot {
   width: 16px;
	    height: 16px;
	   background: #2c5aa0;
	  border-radius: 50%;
	   margin-top: 5px;
	   flex-shrink   :     0;
}

.timeline-content h3 {
  font-size: 1.2rem;
   margin-bottom: 8px;
    color    : #1a1a1a;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

.quick-info {
    background: white;
   padding: 30px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   margin-bottom: 40px;
}

.quick-info h3 {
    font-size: 1.4rem;
   margin-bottom: 15px;
  color: #2c5aa0;
}

.quick-info p {
    margin-bottom: 20px;
   color: #666;
}

.preparation-list {
         list-style: none;
   padding-left: 0;
}

.preparation-list li {
    padding: 8px 0;
   color: #555;
          position:    relative;
  padding-left: 25px;
}

.preparation-list li:before {
  content: '✓';
    position: absolute;
   left: 0;
    color: #28a745;
   font-weight: bold;
}

.contact-reminder {


    background: #fff3cd;
      padding: 25px;
  border-radius: 8px;
    border-left: 4px solid #ffc107;


}

.contact-reminder h3 {
   font-size: 1.3rem;
    margin-bottom: 10px;
   color:       #856404;
}

.contact-reminder p     {
  margin-bottom: 15px;
    color: #856404;
}

.emergency-contact {
    display: flex;
   flex-direction: column;
    gap: 5px;
}



.emergency-contact strong   {
         font-size: 1.5rem;
   color: #2c5aa0;
}

.emergency-contact span {
	    color: #666;

	    font-size: 0.9rem;
	}

.thankyou-image img {
    width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resources-section
{
  padding     :   80px 20px;
    background: #f8f9fa;
}

.resources-container {
    text-align: center;
  margin: 0 auto;
  max-width: 1200px;
}

.resources-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.resources-section > p {
   font-size: 1.2rem;
   margin-bottom: 50px;
    color: #666;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.resource-card {
    background: white;
  padding: 30px 25px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        transition: transform 0.3s ease; 

}

.resource-card:hover {
  transform: translateY(-5px);

}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  color: #2c5aa0;
}

.resource-card p  
  {
  color: #666;
   line-height: 1.6;
}

.testimonial-preview {
  padding     :80px 20px;
}

.testimonial-container {
     max-width: 800px;
    margin: 0 auto;
    text-align: center;

}

.testimonial-preview h2 {
   font-size: 2.3rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-carousel {
   position: relative;
}

.testimonial-item {
  display :      none;
  background: white;
  padding: 40px 30px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-item.active	{
  display: block;
}

.testimonial-item blockquote {
    font-size  :     1.3rem;
  font-style: italic;
  margin-bottom: 20px;
   color: #333;
    line-height: 1.6;
}

.testimonial-item cite {
  font-size: 1rem;
  color: #666;
   font-style: normal;
}

.return-navigation {
      padding: 80px 20px;
	 background :    #f8f9fa;


}

.navigation-container {
   max-width: 800px;
  margin: 0 auto;
   text-align: center;
}

.return-navigation h2
	{
      font-size: 2.3rem;
    margin-bottom: 40px;
      color: #1a1a1a;

}

.nav-options {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	   gap: 30px;
}

.nav-option
	{
	  background: white;
    padding   :      30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
                    text-decoration: none;
	 transition: transform 0.3s ease;
  display: block; 
}

.nav-option:hover {
  transform: translateY(-5px);
}

.nav-option h3 {
   font-size: 1.4rem;
  margin-bottom: 10px;
    color  :       #2c5aa0;
}

.nav-option p {
    color: #666;
   line-height:     1.6;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.3rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .commitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .steps-timeline {
        gap: 20px;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .nav-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}