* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color    : #333333;
}

.primary-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 #e1e1e1;
}

.nav-container {
    max-width: 1200px;
  margin: 0 auto;
   display: flex;
   justify-content: space-between;
   align-items  :  center;
    padding: 15px 20px;
}

.brand-logo .logo-img {
	 height  :        45px;
   width     :       auto;
}

.nav-links {
    display: flex;
   list-style: none;
  gap: 40px;
} 

.nav-links a {
   text-decoration: none;
    color: #333;
   font-weight: 500;
      transition    :   color 0.3s ease;
}

.nav-links a:hover {
  color: #6366f1;
}

.mobile-toggle {
   display: none;
   flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-toggle span {
    width: 25px;
   height: 3px;
  background: #333;
    transition: 0.3s;
} 

.hero-section {
	margin-top: 80px;
	 padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero-content {
   max-width: 1200px; 
	  margin: 0 auto; 
	   display: grid; 
	  grid-template-columns: 1fr 1fr; 
	   gap: 60px; 
	  align-items   :        center;
}

.hero-text h1 {
	font-size: 3.2rem;
    font-weight: 700;
   margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
	font-size: 1.2rem;
  margin-bottom: 40px;
   line-height: 1.7;
    opacity: 0.9;
}

.hero-actions {
   display: flex;
  gap :      20px;
    flex-wrap: wrap;
}

.cta-primary 
 {
   background: #ff6b6b;

  font-weight     : 600;

  transition: all 0.3s ease;

    text-decoration: none;

  color     :        white;

   padding  :16px 32px;

   display: inline-block;

   border-radius: 8px;
}

.cta-primary:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.cta-secondary {
    -webkit-transition: all 0.3s ease;
  -moz-border-radius: 8px;
    border     :2px solid white;
   color: white;
                    -moz-transition: all 0.3s ease;
    padding    :     14px 30px;
	text-decoration:   none;
   border-radius: 8px;
   -o-transition: all 0.3s ease;
               -webkit-border-radius: 8px;
     font-weight: 600;
	transition: all 0.3s ease;
     display: inline-block;
	}

.cta-secondary:hover {
   background: white;
   color: #667eea;
}

.hero-image {
  width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.section-container {

    max-width: 1200px;
     margin: 0 auto;
       padding: 80px 20px;
     }

.transformation-process {

	  background: #f8fafc;
	}

.transformation-process h2 {
  text-align: center;
    font-size: 2.5rem;
      margin-bottom: 60px;
    color:#1a1a1a;
}



.process-grid  
  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.process-step {
  background: white;
   padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	text-align: center;
  transition: transform 0.3s ease;}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {

	  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
	width: 60px;
  height: 60px;
  border-radius: 50%;
	display: flex;
   align-items: center;
    justify-content: center;
   font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;

}

.process-step h3 {
    font-size: 1.4rem;
   margin-bottom: 15px;
    color: #1a1a1a;
	}

.coaching-services {
    padding: 80px 20px;
}



.services-intro {
 text-align: center;
   margin-bottom:  60px;
}

.services-intro h2 {
    font-size: 2.5rem;
   margin-bottom: 20px;
  color: #1a1a1a;
}

.services-intro p {
    font-size   :      1.1rem;
    color: #666;
   max-width: 600px;
	margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
   background:  white;
   border-radius: 12px;
       overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
    object-fit: cover;
    width: 100%;
   height: 220px;
}

.service-content {
	padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem; 
	    margin-bottom: 15px; 
	  color: #1a1a1a;
}

.service-content p {
  color    :       #666;
          margin-bottom: 20px;
	line-height: 1.6;
}



.service-features		{
    list-style: none;
}

.service-features li {
         padding: 8px 0;
  color: #667eea;
     position: relative;
    padding-left     : 20px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
    left: 0;
   color: #ff6b6b;
   font-weight: bold;
}

.success-stories	{
   background: #1a1a1a;
  color: white;
    padding: 80px 20px;
}

.success-stories h2	{
	   text-align: center;
   font-size: 2.5rem;
  margin-bottom     :    60px;


}

.stories-grid {
  display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap   :        40px;
}

.story-card {
  background: rgba(255,255,255,0.05);
	padding: 40px 30px;
  border-radius: 12px;
   border-left    :     4px solid #ff6b6b;


}

.story-card blockquote p {

    font-style    :     italic; 
	   font-size :      1.1rem; 
	  line-height: 1.7; 
	  margin-bottom: 20px;
}

.story-author strong {
  color: #ff6b6b;
  font-size: 1.1rem;
}

.story-author span {
	 display: block;
  color: #ccc;
    font-size: 0.9rem;
   margin-top: 5px;
}

.cta-section {

  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
	color: white;
         padding   :   80px 20px;
}

.cta-content {
         display: grid;
    grid-template-columns: 1fr 1fr;
          gap: 60px;
    align-items: center;
  margin-bottom  :    40px;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height     :  1.3;
}

.cta-text p {
  font-size    :        1.2rem;
  margin-bottom: 40px;
       opacity: 0.95;
}

.cta-benefits {

  flex-wrap: wrap;
  gap: 30px;
    display: flex;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    display: block;
  font-size: 2rem;
  font-weight: bold;
   color :     #fff;
}

.benefit-text {
  font-size: 0.9rem;
	opacity     :    0.9;

}

.cta-image {
        width: 100%;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-action {
    text-align: center;
}

.cta-primary.large {
    font-size: 1.2rem;
  padding: 20px 40px;
}

.contact-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.contact-intro {
    text-align: center;
	margin-bottom: 60px;
}

.contact-intro h2 {
   font-size: 2.5rem;
   margin-bottom :  20px;
  color: #1a1a1a;
}

.contact-intro p {
  font-size: 1.1rem;
    color: #666;
    max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 60px;
  align-items: start;
}

.contact-form {
    background: white;
 padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 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;
	font-weight: 600;
  color: #333;

}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 12px 15px;
   border: 2px solid #e1e1e1;
   border-radius: 8px;
    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: #667eea;
}

.form-submit   {
   background: #667eea;
   color: white;
   padding: 15px 30px;
    -moz-border-radius: 8px;
  border   :       none;
  border-radius: 8px;
	-webkit-border-radius: 8px;
    font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
  transition: background 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #5a5fcf;
}

.contact-info {
    background: white;
	padding: 40px 30px;
    border-radius     :        12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}



.info-item {
	margin-bottom: 30px;
}

.info-item h4 {
    color: #667eea;
   margin-bottom    :10px;
  font-size: 1.1rem;
}

.info-item p {


   color: #666;
   line-height:1.6;
	}

.site-footer {
  background: #1a1a1a;
                    padding: 60px 20px 20px;
    color: white;
}

.footer-container {
    max-width: 1200px;
	   margin: 0 auto;
		 display: grid;
	    grid-template-columns: 1fr 2fr;
	   gap: 60px;
}

.footer-brand p {
   margin-top: 20px;
    color: #ccc;
   line-height: 1.6;
}

.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer-links   {

	               gap: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	}

.link-group h4 {
   color   :        #ff6b6b;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.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: #ff6b6b;
}

.footer-bottom    {
    padding-top: 20px;

         margin: 40px auto 0;

	 color   :       #999;

  border-top: 1px solid #333;

   max-width: 1200px;

    text-align: center;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-benefits {
        justify-content: center;
    }
}.about-hero {
   margin-top: 80px;
   padding: 100px 20px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
   color: white;
}

.about-hero-content {
      max-width: 1200px;
    margin: 0 auto;
	 display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
	}

.about-text h1 {
  font-size: 3rem;
   font-weight: 700;
    margin-bottom: 25px;
  line-height: 1.2;
}

.about-subtitle {
   opacity: 0.95;
  font-size: 1.2rem;
	line-height: 1.7;
}

.about-main-image  
  {
	    width: 100%;

   border-radius: 15px;

  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
	}

.our-story {
   padding: 100px 20px;
    background: #f9fafb;
}

.story-content h2 {
   text-align: center;
  font-size: 2.8rem;
  margin-bottom: 80px;
  color: #1a1a1a;
}

.story-timeline {
  max-width: 800px;
    margin: 0 auto;
	position: relative;
} 

.story-timeline::before {
  content: '';
  position :       absolute;
      left: 50%;
    top: 0;
   bottom: 0;
   width: 3px;
  background: linear-gradient(to bottom, #4facfe, #00f2fe);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
	 position: relative;
}  

.timeline-item:nth-child(odd) {
   flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
    padding: 15px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
	 position: absolute;
	 left: 50%;
  transform: translateX(-50%);
	 z-index: 2;
          top: 20px;
}

.timeline-content {
 background:white;
    padding: 40px 35px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   width: 45%;
   margin-top: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {


    margin-left: auto;
     }

.timeline-content h3 {

  color: #1a1a1a;
   font-size: 1.4rem;
   margin-bottom: 15px;
	}

.timeline-content p {
		 color: #666;
      line-height: 1.7;
}

.our-approach {
   padding: 100px 20px;
}

.approach-content {
	   max-width: 1200px;
       margin     :     0 auto;
	 display: grid;
	grid-template-columns: 1fr 1fr;
      gap: 80px;
  align-items: center;


}

.approach-text h2 {
  font-size   :        2.8rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.approach-text > p {

   font-size: 1.2rem;
   color: #666;
    margin-bottom: 50px;
   line-height: 1.7;


}

.approach-principles {
  display: flex;
    flex-direction: column;
  gap: 30px;
}

.principle {
    padding: 25px;
	background: #f8fafc;
	 border-radius:10px;
   border-left: 4px solid #4facfe;
}

.principle h4
	{
	color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom    : 10px;
}

.principle p {
	color: #666;
    line-height: 1.6;
}

.approach-img    {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-expertise {
   padding     :  100px 20px;
	background: #f9fafb;
}

.team-expertise h2 {
  text-align    :    center; 
		 font-size: 2.8rem; 
	   margin-bottom: 80px; 
	   color: #1a1a1a;


}

.expertise-grid	{
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	gap: 50px;

	max-width    :     1200px;

   margin: 0 auto;
}


.expertise-card     {
     background: white;
    border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.expertise-card:hover
{
  transform: translateY(-10px);
}

.expertise-image {
   height  :      250px;
   object-fit: cover;
   width: 100%;
}

.expertise-content     {
       padding: 35px;
}

.expertise-content h3 {
    font-size: 1.5rem;

	  margin-bottom: 20px;

	  color: #1a1a1a;
}

.expertise-content p {
   color: #666;
   line-height: 1.7;
}

.our-mission {
   padding    :    100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.mission-content h2 {
   text-align  :     center;
   font-size: 2.8rem;
   margin-bottom: 60px;
}

.mission-text {
  max-width: 800px;
	margin: 0 auto 80px;


}

.mission-text p
{
       font-size: 1.2rem;
   line-height: 1.8;
  margin-bottom: 25px;
	opacity: 0.95;
} 

.mission-stats     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
    max-width   :     800px;
   margin   :      0 auto;
}

.stat-item {
   text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.1);
	border-radius: 12px;
  backdrop-filter: blur(10px);
} 

.stat-number {
  display: block;
  font-size: 3rem;
    font-weight: bold;
	 color: #ff6b6b;
   margin-bottom: 10px;
}

.stat-label {
   font-size:1rem;
  opacity: 0.9;
}

.values-section {
	  padding     : 100px 20px;

}

.values-section h2 {
    text-align  :    center;
    font-size: 2.8rem;
       margin-bottom: 80px;
   color: #1a1a1a;
}

.values-grid {
    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	  gap: 40px;

	  max-width: 1000px;

	   margin: 0 auto;
}

.value-item {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	 text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover  {
  transform: translateY(-5px);
}

.value-item h3


{
   color: #667eea;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.value-item p {
    color: #666;
	   line-height: 1.7;
}

.thankyou-hero {
    margin-top: 80px;
   	 padding: 100px 20px;
     background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
           color: white;
}

.thankyou-content {
  max-width    :  1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.thankyou-text h1 {


    font-size: 3.2rem;
     font-weight: 700;
    margin-bottom: 25px;
  line-height: 1.2;
}

.thankyou-subtitle {


   font-size:        1.3rem;
	 line-height: 1.7;
   margin-bottom: 50px;
    opacity :    0.95;
	}

.thankyou-image {
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.next-steps h2 {
   font-size: 2rem;
			margin-bottom: 40px;
}

.steps-list {
   display     :     flex;
     flex-direction   :    column;
      gap: 30px;
}

.step-item {
        gap: 20px;

	    display: flex;

	    align-items: flex-start;
}

.step-icon {
    background: #ff6b6b;
        color: white;
    width  :     40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
  align-items: center;
   justify-content: center;
  font-weight: bold;
    flex-shrink: 0; 

}

.step-content h3 {
	  font-size: 1.3rem;
    margin-bottom: 8px;

}

.step-content p {
   opacity: 0.9;
    line-height: 1.6;
}

.while-waiting {
        padding: 100px 20px;
  background: #f9fafb;
}

.while-waiting h2 {
  text-align: center;
    font-size    :    2.8rem;
   margin-bottom: 80px;
   color: #1a1a1a;
}

.waiting-content {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 60px;
        align-items     :        center;
}

.waiting-tips h3 
 {

    font-size: 2.2rem;
  margin-bottom: 40px;
    color: #1a1a1a;
}

.tips-list {
    display: flex;
	 flex-direction: column;
    gap: 30px;

}

.tip-item {
  background: white; 
   padding: 30px; 
   border-radius: 12px; 
  box-shadow: 0 6px 20px rgba(0,0,0,0.08); 
    border-left: 4px solid #11998e;
}

.tip-item h4 {
    font-size:    1.2rem;
  margin-bottom    :      12px;
                    color: #1a1a1a;
}

.tip-item p {
       color: #666;
	 line-height: 1.6;
     }

.preparation-img {
     width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.quick-start-tips {
  padding: 100px 20px;
}

.quick-start-tips h2
	{


   text-align: center;
    font-size: 2.8rem;
  margin-bottom  :   80px;
  color:  #1a1a1a;
	}

.tips-grid {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   	gap: 40px;
       max-width    :    1200px;
     margin: 0 auto;
}

.tip-card {
  background: linear-gradient(135deg, #667eea, #764ba2);
                    color: white;
   padding: 40px 30px;
   border-radius: 15px;
  text-align: center;
	transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-8px);
}

.tip-card h3 {
  font-size: 1.4rem;
    margin-bottom: 20px;
}

.tip-card p{
        line-height: 1.7;
  opacity: 0.95;
}

.emergency-contact {
     padding:  80px 20px;
  background: #f8fafc;
}

.emergency-info 
 {

	   margin: 0 auto;
  text-align: center;
    max-width : 800px;
}

.emergency-info h2 {
   font-size   :       2.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.emergency-info > p {
   font-size: 1.2rem;
   color: #666;
	 margin-bottom: 50px;
    line-height: 1.7;
} 

.contact-options {
       display :     grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 40px;
}

.contact-item  
  {

	   background: white;
    padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);


}

.contact-item h4 {
   	 color: #667eea;
    font-size: 1.3rem;
  margin-bottom: 15px;

}

.contact-item p {
  color: #1a1a1a;

 font-size: 1.1rem;

   margin-bottom: 10px;

    font-weight: 600;
}

.contact-item span
{
    color:#666;
    font-size :   0.9rem;
}  

.success-reminder {
  padding: 100px 20px;
     background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
       color   : white;
	}

.reminder-content {
    max-width: 1200px;
    margin     :    0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items   : center;
}

.reminder-text h2 {
   font-size: 2.5rem;
   margin-bottom: 30px;
   line-height: 1.3;
}

.reminder-text p {
     font-size: 1.2rem;
    line-height: 1.7;
	margin-bottom :      20px;
   opacity: 0.95;

}

.reminder-cta


{
  margin-top: 40px;
		 display: flex;
    gap: 20px;
   flex-wrap: wrap;
	
}

.reminder-image {
  width     : 100%;

   border-radius :      15px;

  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .about-hero-content,
    .thankyou-content,
    .approach-content,
    .waiting-content,
    .reminder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text h1,
    .thankyou-text h1 {
        font-size: 2.5rem;
    }
    
    .story-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 50px;
    }
    
    .timeline-year {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin: 60px 0 0 0 !important;
    }
    
    .expertise-grid,
    .tips-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        gap: 25px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reminder-cta {
        justify-content: center;
    }
}.section-container h2 {
   text-align: center;
   color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 40px;

}

.section-container h3 {
   font-size: 1.8rem;
   color: #333;
 margin: 30px 0 15px;
}

.section-container p{
   font-size: 1.1rem;
    color: #666;
  line-height: 1.7;
    margin-bottom    :   20px;


}