* {
  margin: 0;
    padding: 0;
   box-sizing: border-box;

}

body {
    background-color :        #ffffff;
   color: #2c3e50;
  font-family: 'Segoe UI', system-ui, sans-serif;
   line-height: 1.6;
}

.main-navigation {
  position   :        fixed;
    top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
  border-bottom: 1px solid rgba(52, 73, 94, 0.1); 
	
}

.nav-container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.company-logo {
    height: 45px;
               width: auto;
}

.nav-links {
   display: flex;
   list-style :       none;
    gap: 2.5rem;

}

.nav-links a {
   transition: color 0.3s ease;
    position: relative;
    font-weight: 500;
       color: #34495e;
   text-decoration: none;}

.nav-links a:hover {
     color: #3498db;}

.nav-links a::after {
  content: '';
    position: absolute;
  width: 0;
  height     :   2px;
   bottom :    -5px;
  left   :0;
   background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width  :      100%;
}

.burger-menu {
   display :none;
   flex-direction:     column;
  cursor: pointer;
    gap: 4px;
}

.burger-menu span {
   width: 25px;
   height: 3px;
   background :   #34495e;
    transition: 0.3s;
}

.hero-section {
	 padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   min-height: 80vh;
  display :    flex;
    align-items: center;
	}

.hero-content {
	 max-width: 1200px;
   margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap     :   4rem;
  align-items: center;
}  

.hero-text h1 {
   font-size     :  3.2rem; 
  font-weight    : 700; 
  color: white; 
       margin-bottom   :  1.5rem; 
   line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
   margin-bottom: 2.5rem;
   line-height: 1.7;
}

.hero-buttons {
    gap: 1.5rem;
   display: flex;
}

.primary-btn, .secondary-btn {


  padding: 16px 32px;
    border-radius: 8px;
	text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
  background: #e74c3c;
   color: white;
    border: 2px solid #e74c3c;
}

.primary-btn:hover {

	 background: #c0392b;
   border-color:    #c0392b;
  transform: translateY(-2px); 
	

}

.secondary-btn {
	background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background:        white;
  color: #667eea;
}

.hero-image img {
    width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}  

.container    {
    max-width: 1200px; 
	margin: 0 auto; 
   padding: 0 2rem;
}

.services-overview {
 padding: 100px 0;
     background: #f8f9fa;
	}

.services-overview h2 {
    text-align: center;
   font-size: 2.8rem;
   margin-bottom: 3rem;
    color: #2c3e50;
   font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap     :     2.5rem;
   margin-top: 4rem;
}

.service-card {
    background: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     }

.service-card img {


   width: 100%;
   height: 250px;
  object-fit: cover;

}

.service-card h3 {
    font-size: 1.5rem;
  margin   :   1.5rem 1.5rem 1rem;
   color: #2c3e50;
    font-weight: 600;
}

.service-card p    {
  padding: 0 1.5rem 1.5rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.about-preview {
               padding: 100px 0;
					background: white;
}


.about-content {
  display   :       grid;
  grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
   align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color     :     #2c3e50;
    font-weight: 700;
}

.about-text p {
       margin-bottom: 1.5rem;
   color: #555;
    font-size: 1.1rem;
  line-height: 1.7;}

.benefits-list  {
	  list-style: none;
  margin-top  :      2rem;
	}

.benefits-list li {
  position: relative;
   padding: 0.8rem 0 0.8rem 2rem;
    color: #555;
  font-size  : 1.05rem;
}

.benefits-list li:before
	{
  content: '✓';
    position: absolute;
   left: 0;
  color: #27ae60;
  font-weight: bold;
   font-size: 1.2rem;
}


.about-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.cta-content h2 {
    color: white;
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p
	{
  color: rgba(255, 255, 255, 0.9);
   font-size: 1.2rem;
   margin-bottom: 2.5rem;
    max-width: 600px;
               margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #e74c3c;
    color: white;
   padding: 20px 40px;
    border-radius: 50px;
                    text-decoration  :  none;
	 font-weight: 600;
  font-size: 1.1rem;
    transition: all 0.3s ease;
  display: inline-block;
	
}

.cta-button:hover


{
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.contact-section {
  padding: 100px 0;
    background: #f8f9fa;
}

.contact-section h2 {
	text-align: center;
  font-size: 2.8rem;
    margin-bottom:       3rem;
  color: #2c3e50;
    font-weight: 700;
}

.contact-content {
   display : grid;
    grid-template-columns  :       1fr 1fr;
   gap: 4rem;
   align-items: start;
}

.contact-info h3 {
   font-size: 1.8rem;
	margin-bottom: 2rem;
    color  :       #2c3e50;
   font-weight: 600;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;


}

.contact-item strong {
  color: #34495e;
  margin-bottom: 0.5rem;
        font-weight   :  600;
}

.contact-item span {
   color: #7f8c8d;

  font-size: 1.05rem;
}

.contact-form  
  {

  background: white;
   padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}  

.form-row    {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 1rem;
   margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 8px;
     border: 2px solid #ecf0f1;
   background : #fdfdfd;
  padding: 15px;
  transition: border-color 0.3s ease;
   font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: white;
   outline     :none;
    border-color: #3498db;

}

.contact-form textarea {
    grid-column: 1 / -1;
   resize: vertical;
   min-height: 120px;
}

.submit-btn {
    width: 100%;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
   border: none;
   padding: 18px;
  border-radius   :       8px;
  font-size: 1.1rem;
   font-weight: 600;
               cursor: pointer;
  transition: all 0.3s ease;
	
}

.submit-btn:hover {


  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);


}

.main-footer {
  background: #2c3e50;
    color: white;
               padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
  margin    :      0 auto;
    padding: 0 2rem;
   display     :   grid;
    grid-template-columns: auto 1fr;
    gap :       4rem;
  align-items: start;


}

.footer-logo {
   height: 50px;
    width   :   auto;
  filter: brightness(0) invert(1);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4		{
  margin-bottom  :     1rem;
  font-weight: 600;
  color    :  #ecf0f1;
}

.footer-section p,
.footer-section a {
   color: #bdc3c7;
    text-decoration: none;
   line-height: 1.6;
   margin-bottom: 0.5rem;
	display: block;
	
}

.footer-section a:hover {
   color: #3498db; 
	
}

.footer-bottom		{
   border-top  :     1px solid #34495e;
   margin-top: 2rem;
   padding-top: 1.5rem;
  text-align: center;
   color :#95a5a6; 
	
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)),
                url('../timelines/international_team_leadership_coaching_1.webp') center/cover;
   min-height: 60vh;
   display: flex;
    align-items: center;
   padding: 120px 0 80px;
    position: relative;
}

.hero-overlay   {
    width: 100%;
                    height    :  100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
   top: 0;
    left: 0;
  z-index: 1;
}

.about-hero-content {
   position: relative;
    z-index     :  2;
  text-align     :    center;
	color  :   white;
   max-width: 800px;
    margin: 14% auto;
}

.about-hero h1 {
    font-size: 3.5rem;

   font-weight: 700;

  margin-bottom: 1.5rem;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity  :0.95;
}

.our-story {
     padding: 100px 0;
   background: white;
     }

.story-content {
    display: grid;
   grid-template-columns: 1.3fr 0.7fr;
    gap  :    4rem;
    align-items: center;
}

.story-text h2 {
  font-size: 2.6rem;
   color: #2c3e50;
	margin-bottom: 2rem;
	font-weight: 700;
}

.story-text p {


   font-size: 1.1rem;
    line-height: 1.8;
   color: #555;
    margin-bottom: 1.8rem;
    text-align    :justify;
}

.story-image img {
  width: 100%;
    border-radius:  15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.our-approach {
    padding: 100px 0;
  background: #f8f9fa;
}

.our-approach h2 {
         text-align :    center;
    font-size: 2.8rem;
     color: #2c3e50;
   margin-bottom:     4rem;
  font-weight: 700;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap  :   3rem;


}

.approach-item {
  background: white;
   padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
   overflow: hidden;
}

.approach-item::before 
 {
  content: '';

	   position: absolute;

	    top :     0;

	    left: 0;

	    width: 100%;

	    height: 4px;

	  background: linear-gradient(45deg, #3498db, #9b59b6);
}

.approach-item:hover  {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.approach-number


{
    width :60px;
  height   :   60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
   margin: 0 auto 1.5rem;
}

.approach-item h3 {
    font-size: 1.4rem;
  color: #2c3e50;
	margin-bottom: 1rem;
   font-weight: 600;
}

.approach-item p {
  color: #666;
	line-height: 1.6;
    font-size   :        1rem;
}

.expertise-areas

{
   padding    :     100px 0;
    background: white;
}

.expertise-areas h2     {
   font-size:   2.8rem;
   color: #2c3e50;
     margin-bottom: 4rem;
   text-align: center;
  font-weight: 700;
}

.expertise-content {
	 display :       grid;
   grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
          align-items: start;
}

.expertise-list {
   display: grid;
  gap: 2.5rem;
} 

.expertise-category h3 {
  font-size: 1.6rem;
  color: #34495e;
	 margin-bottom: 1.2rem;
  font-weight     :  600;
  border-bottom: 2px solid #3498db;
   padding-bottom: 0.5rem;
}

.expertise-category ul {
	list-style: none;
    padding: 0;
}

.expertise-category li {
    position: relative;
  padding: 0.8rem 0 0.8rem 2rem;
  color: #666;
   font-size: 1.05rem;
   border-bottom: 1px solid #ecf0f1;
}

.expertise-category li:before {
  content: '→';
   position: absolute;
    left: 0;
   color: #3498db;
	font-weight   :     bold;
}

.expertise-category li:last-child     {
       border-bottom: none;

	}

.expertise-image {
   position: sticky;
  top: 120px;
}

.expertise-image img {
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.our-values {
  padding: 100px 0;
	 background: #f8f9fa;
     }

.our-values h2 {
  text-align: center;
   font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 4rem;
   font-weight  :   700;
}

.values-grid {
   display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	   gap: 2.5rem;
}

.value-card {
    background: white;
   padding    :   2.5rem;
  border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   transition   :      transform 0.3s ease;
	border-top: 4px solid #e74c3c;
}

.value-card:nth-child(2) {
  border-top-color: #3498db;
}

.value-card:nth-child(3) {
  border-top-color: #27ae60; 

}

.value-card:nth-child(4) {
        border-top-color: #f39c12;
}

.value-card:hover {

	  transform: translateY(-5px);
     }

.value-card h3 {
	font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom    :      1rem;
  font-weight: 600;
}

.value-card p {
   color: #666;
   line-height: 1.7;
   font-size: 1.05rem;
}

.success-stats {
    padding: 80px 0; 
	  background: linear-gradient(135deg, #2c3e50, #34495e); 
	   color: white;
}

.success-stats h2 {
    text-align     :  center;
  font-size: 2.8rem;
   margin-bottom: 4rem;
  font-weight: 700;
}

.stats-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
   text-align :     center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
      font-size: 3.5rem;
 font-weight: 800;
  color    :  #3498db;
 margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}



.stat-label {
   font-size: 1.2rem;
			opacity: 0.9;
   font-weight: 500;
}

.why-choose-us {
  background: white;
    padding: 100px 0;


}

.choose-content {
   display: grid;
    grid-template-columns: 1.3fr 0.7fr;
  gap   :        4rem;
   align-items: center;
}

.choose-text h2 {
   font-size: 2.6rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.choose-text > p {
  font-size :      1.15rem;
   color: #555;
  line-height: 1.8;
         margin-bottom: 2.5rem;
}

.benefits-detailed {
   display   :  grid;
  gap :  1.5rem;


}

.benefit-item {
   background: #f8f9fa;
		border-left: 4px solid #3498db;
   padding: 1.5rem;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.benefit-item:hover {
	background: #ecf0f1;
}

.benefit-item strong {
  display:   block;
    color: #2c3e50;
   font-size: 1.1rem;
   margin-bottom     :        0.5rem;
  font-weight: 600;
}

.benefit-item span {
   font-size: 1rem;
   color: #666;
 line-height: 1.6;
}

.choose-image img {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.thankyou-hero		{
  min-height: 80vh;
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	 display:      flex;
    align-items: center;

}

.thankyou-content {
  text-align: center;
    max-width: 900px;
  margin: 0 auto;
}

.success-icon {
	          margin-bottom   :   2rem;}

.checkmark {
               width: 80px;
   height: 80px;
    border-radius     : 50%;
         display: inline-block;
                    position: relative;
	 background     :    #27ae60;
   margin-bottom: 1rem;
        animation: checkmarkScale 0.6s ease-out;


}

.checkmark-circle 
 {

	    width: 80px;
   height: 80px;
    position: absolute;
	 border-radius: 50%;
    background: #27ae60;
    animation: pulse 2s infinite;
}

.checkmark-stem {
    position: absolute;
   width: 3px;
   height: 18px;
  background: white;
    left: 36px;
	 top: 38px;
  transform: rotate(45deg);
}

.checkmark-kick {
    position: absolute;
   width: 12px;
 height: 3px;
    background: white;
  left: 30px;
    top: 50px;
  transform: rotate(-45deg);
}@keyframes checkmarkScale {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}.thankyou-content h1 {
  font-size: 3.2rem;
   font-weight: 700;
  margin-bottom:  1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 

}

.thankyou-content > p {
   font-size: 1.25rem;
	    line-height: 1.7;
	  margin-bottom: 3rem;
	    opacity :      0.95;
}

.next-steps {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
   padding: 3rem;
   border-radius: 20px;
  margin   :        3rem 0;
    text-align  :  left;
}

.next-steps h2 {
	 text-align: center;
  font-size: 2.2rem;
    margin-bottom:        2.5rem;
  font-weight :      600;
}


.steps-timeline {
     display: grid;
    gap: 2rem;

}

.timeline-step {
   display: grid;
    grid-template-columns: auto 1fr;
 gap: 1.5rem;
   align-items: start;
}

.step-number {
	width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
  border-radius:50%;
  display: flex;
  align-items : center;
  justify-content: center;
   font-size: 1.3rem;
  font-weight: bold;
    flex-shrink :        0;
}

.step-content h3 
 {
    font-weight: 600;
   margin-bottom: 0.5rem;
	 font-size: 1.3rem;
}

.step-content p {
  opacity: 0.9;
   line-height   :   1.6;
}

.interim-resources {
				 margin: 4rem 0;
               text-align  :center;
}

.interim-resources h2 {
     font-size: 2.2rem;
  font-weight: 600;
	margin-bottom: 1rem;
	}

.interim-resources > p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
    opacity: 0.9; 

}

.resource-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-top: 2rem;
}

.resource-card {

	  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
   padding: 2rem;
    border-radius :     15px;
   text-align: center;
   transition  :    transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);}

.resource-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.resource-card img {
   width: 100%;
   max-width: 200px;
                    height: 120px;
    object-fit: cover;
   border-radius: 10px;
   margin-bottom: 1rem;
}

.resource-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
   font-weight: 600;
}

.resource-card p {
   opacity: 0.9;
   line-height: 1.5;
         font-size: 0.95rem;
}

.contact-reminder {
  background: rgba(231, 76, 60, 0.2);
  padding: 2.5rem;
  border-radius: 15px;
                    margin: 3rem 0;
  text-align: center;
  border: 2px solid rgba(231, 76, 60, 0.3);
}

.contact-reminder h2 {
   font-size: 1.8rem;
	  margin-bottom: 1rem;
	    font-weight: 600;
}

.contact-reminder p {
       font-size : 1.1rem;
    margin-bottom    : 1.5rem;
    opacity: 0.95;


}

.urgent-contact {
  background: rgba(255, 255, 255, 0.15);
	padding  :   1.5rem;
   border-radius: 10px;
   font-size: 1.1rem;
  line-height: 1.8;
   display: inline-block;
  backdrop-filter: blur(5px);
}

.cta-buttons {
   display: flex;
       gap: 2rem;
       justify-content: center;
   	margin-top:3rem;
     flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .story-content,
    .expertise-content,
    .choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .next-steps {
        padding: 2rem;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-text h2,
    .our-approach h2,
    .expertise-areas h2,
    .our-values h2 {
        font-size: 2.2rem;
    }
    
    .approach-item,
    .value-card {
        padding: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
    
    .expertise-image {
        position: static;
    }
}