* {
    margin:       0;
   padding: 0;
   box-sizing: border-box;
}

body


{
  font-family: 'Arial', sans-serif;
   line-height  :1.6;
   color: #2c3e50;
  background: #f8f9fa;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);

	  backdrop-filter: blur(10px);

	    position:       fixed;

	    top: 0;

	         width: 100%;

	   z-index: 1000;

	  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: 1rem 2rem;
}



.brand-logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display:        flex;
         list-style  :      none;
  gap: 2rem;
}

.nav-item
{
         text-decoration:        none;
    color:#34495e;
  font-weight: 500;
        transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
                    position: relative;
}

.nav-item:hover, .nav-item.active {
   color: #e74c3c;
}

.nav-item::after {

  content: '';
  position: absolute;
   bottom: -5px;
        left: 0;
    width: 0;
  height: 2px;
    background: #e74c3c;
	 transition: width 0.3s ease;
	}

.nav-item:hover::after, .nav-item.active::after  {
   width: 100%;
}

.mobile-toggle {

	  display: none;
  flex-direction    :    column;
   background: none;
  border: none;
	cursor: pointer;
  padding: 5px;


}

.burger-line
	{


   width     :    25px;
  height: 3px;
    background: #34495e;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-banner

{
  display: flex;
   align-items: center;
  min-height: 100vh;
  padding: 120px 2rem 2rem;
  max-width: 1200px;
	margin: 0 auto;
   gap: 4rem;
}

.hero-content {
  flex:   1;
}

.hero-title   {
    font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
   margin-bottom: 1.5rem;
        line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
	color: #5a6c7d;
  margin-bottom  :     2.5rem;
	 max-width: 500px;
}

.hero-actions     {
	display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.primary-cta {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
   padding :   15px 30px;
    text-decoration    :        none;
    border-radius: 8px;
  font-weight :    600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); 
	
}

.primary-cta:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);

}

.secondary-btn {
  border: 2px solid #34495e;
  color: #34495e;
         padding: 13px 28px;
   text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #34495e;
    color: white;
}

.hero-visual {
    flex: 1;
	
}

.hero-image {
    width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
    padding: 5rem 2rem; 
	   background: white;
}

.section-container {

	  max-width   :       1200px;
    margin: 0 auto;
	}

.section-heading {
	font-size: 2.5rem;
  text-align: center;
	color: #2c3e50;
    margin-bottom     :        1rem; 
	
}

.section-intro {
  text-align: center;
   font-size: 1.1rem;
                    color: #5a6c7d;
     margin-bottom: 3rem;
    max-width: 600px;
  margin-left: auto;
    margin-right: auto;
}

.services-grid  
  {
  display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
    margin-top: 3rem;
	
}

.service-card {
    background :     #f8f9fa;
        border-radius: 12px;
   overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-image {
   width: 100%;
   height: 200px;
               object-fit: cover;
}

.service-title {

	  font-size: 1.5rem;
   color: #2c3e50;
  padding: 1.5rem 1.5rem 1rem;}

.service-desc {

	  color: #5a6c7d;
  padding: 0 1.5rem 1rem;
    line-height: 1.6;
	}

.service-features {
	  list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.service-features li

{
   color: #7f8c8d;
      padding-left: 1.5rem;
   position: relative;
  padding :   0.3rem 0;
}

.service-features li::before {
  content: '✓';
    color: #27ae60;
  font-weight: bold;
    position  :      absolute;
  left: 0;
}

.coaching-approach {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);


}

.approach-content {
    max-width: 1200px;
    margin    :     0 auto;
   display: flex;
   align-items: center;
   gap: 4rem;
}

.approach-text {
   flex :     1;
}

.approach-title {
   font-size: 2.5rem; 
  color: #2c3e50; 
  margin-bottom: 1.5rem;
}

.approach-description	{
  font-size: 1.1rem; 
	   color: #5a6c7d; 
	    margin-bottom: 2.5rem; 
	    line-height: 1.7; 
	
}

.approach-highlights {
    display: flex;
	    gap: 1.5rem;
	  flex-direction: column;
}

.highlight-item h4 {
   color: #e74c3c;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
  color: #5a6c7d;
   line-height: 1.6;
}

.approach-visual   {
  flex: 1;
}

.approach-image {
  width: 100%;
   height: auto;
     border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cta-section {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
	 padding: 4rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
   margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button  
  {
   background: white;
  color: #e74c3c;
      padding: 15px 35px;
   text-decoration:  none;
  border-radius: 8px;
  font-weight: 600;
  transition     :  all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-section {
	padding: 5rem 2rem; 
	  background: white;



}

.contact-wrapper {
   max-width: 1200px;
          margin :        0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 1rem;
	
}

.contact-subtitle {


    color: #5a6c7d;
	font-size: 1.1rem;
   margin-bottom: 3rem;}

.contact-details {
   display: flex;
     flex-direction: column;
      gap: 2rem;
}

.detail-item h4
	{
    color: #e74c3c;
  font-size: 1.2rem;
   margin-bottom:       0.5rem;
}

.detail-item p {
    color: #5a6c7d;
  line-height  : 1.6;}

.contact-form {
       background: #f8f9fa;
    padding: 2.5rem;
 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display   :        block;
   color: #2c3e50;
   font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {

	   width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
  font-size: 1rem;
    transition :border-color 0.3s ease;
   background: white;

} 

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline    :        none;
   border-color: #e74c3c;
}

.form-textarea {
               resize: vertical; 
  min-height: 120px;
}

.form-submit {


  background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
   padding: 15px 30px;
   border: none;
    border-radius :      8px;
    font-size    :  1rem;
  font-weight: 600;
    cursor: pointer;
  transition :  all 0.3s ease;
   width: 100%;}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.site-footer {
     background: #2c3e50;
   color  :    white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.footer-logo {
  height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-tagline   {


    color: #bdc3c7;
  line-height: 1.6;
}

.footer-heading {
       color: #e74c3c;
  font-size: 1.2rem;
  margin-bottom: 1rem;


}

.footer-links {
  list-style: none;
}

.footer-links li {
          margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {

	  color: white;

}

.footer-address, .footer-phone {
   color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
   padding-top: 2rem;
    border-top: 1px solid #34495e;
  text-align: center;
}

.copyright {
    color: #95a5a6;
}  @media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 2rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .approach-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .approach-title {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .nav-wrapper {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .primary-cta, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
	 padding: 140px 2rem 5rem;
  text-align  :center;
   min-height: 60vh;
    display: flex;
   align-items: center;
   justify-content: center;

}

.about-hero-content 
 {
    max-width :        800px;
}

.about-title {
    font-size: 3.2rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2; 
	
}

.about-subtitle

{
  font-size: 1.3rem;
    opacity: 0.9;
	max-width:     600px;
                    margin: 0 auto;
}

.company-story {
   padding: 5rem 2rem;
      background: #f8f9fa;
}



.story-container {
      max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items   : start;
}

.story-heading {
  font-size: 2.5rem;
       color: #2c3e50;
      margin-bottom: 2rem;
}

.story-text 
 {
    font-size: 1.1rem;
    line-height  :1.8;
    color: #5a6c7d;
	 margin-bottom: 1.5rem;
}

.mission-values {
  margin-top: 3rem;
    display: flex;
	flex-direction: column;
    gap: 2rem; 
	
}

.value-item  
  {
  padding: 1.5rem;
   background: white;
    border-radius: 10px;
   border-left: 4px solid #e74c3c;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-item h4 {
    font-size: 1.3rem;
    color: #e74c3c;
   margin-bottom: 0.8rem;
}

.value-item p {
    color: #5a6c7d;
  line-height: 1.6;
}

.company-photo {
   width: 100%;
  height    :   auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-section {
 padding: 5rem 2rem;
  background: white;
} 

.team-wrapper {
  max-width: 1200px;
    margin: 0 auto;
}



.team-title
{
    font-size: 2.5rem;

		text-align: center;

	   color: #2c3e50;

	  margin-bottom: 1rem;
}

.team-intro {
	    text-align :     center;
   font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 3rem;
  max-width: 700px;
   margin-left: auto;
  margin-right: auto;

}

.expertise-areas {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
	    gap: 2.5rem; 
	  margin-top: 3rem;
}

.expertise-card {
   background: #f8f9fa;
  border-radius: 15px;
   overflow: hidden;
   transition: all 0.3s ease;
  position: relative;
}

.expertise-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);


}

.expertise-image {
 width: 100%;
        height: 220px;
    object-fit: cover;
}

.expertise-card h3 {
    font-size: 1.5rem;
   color: #2c3e50;
  padding: 1.5rem 1.5rem 1rem;
}

.expertise-card p {
   color    :     #5a6c7d;
  padding: 0 1.5rem 1rem;
    line-height: 1.6;
}

.expertise-list {
  list-style: none;
    padding: 0 1.5rem 1.5rem;
}

.expertise-list li {
    padding-left: 1.5rem;
   position: relative;
    padding: 0.4rem 0;
	color: #7f8c8d;
}

.expertise-list li::before {
  content: '→';
  color    :        #e74c3c;
    font-weight: bold;
   position : absolute;
   left: 0;
}

.achievements-section {
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
   padding: 5rem 2rem;
}

.achievements-container {
   max-width: 1200px;
   margin: 0 auto;
}

.achievements-title {
    font-size: 2.5rem;
   text-align: center;
   color: #2c3e50;
   margin-bottom: 3rem;
} 

.stats-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item  
  {
    text-align: center;
    background: white;
    padding: 2rem 1rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-number {
   font-weight: 700;
   display: block;
  color: #e74c3c;
  margin-bottom: 0.5rem;
  font-size: 3rem;
}

.stat-label {
    color:    #5a6c7d;
  font-weight: 600; 
	
}

.testimonial-section {
   margin-top: 4rem;
}

.testimonial-heading {
    font-size: 2rem;
		text-align  :       center;
  color: #2c3e50;
    margin-bottom    :       2rem;


}

.testimonial-grid {
	    display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
	}

.testimonial-item {

   background: white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 4px solid #e74c3c;
     }

.testimonial-item p {
  font-style: italic;
   color: #5a6c7d;
   line-height: 1.7;
  margin-bottom:1rem;
}

.testimonial-item cite {
   color: #e74c3c;
   font-weight: 600;
    font-style: normal;
}

.location-section {
    padding: 5rem 2rem;
   background: white;
}

.location-content {
	max-width: 1200px;
   margin: 0 auto;
          display: grid;
	grid-template-columns: 1fr 1fr;
       gap: 4rem;
  align-items: center;
}

.location-title {
    font-size: 2.5rem;
	    color: #2c3e50;
	   margin-bottom: 1.5rem;
	
}

.location-description {
  font-size: 1.1rem;
  color   :#5a6c7d;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.location-details {
   display: flex;
	flex-direction: column;
   gap: 1.5rem;
}

.location-item h4 {
    color: #e74c3c;
   font-size: 1.2rem;
    margin-bottom   :     0.5rem;
}

.location-item p
{
    color: #5a6c7d;
    line-height: 1.6;


}

.location-image {
   width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
    color     :       white;
    padding:    140px 2rem 5rem;
   min-height: 100vh;
	 display: flex;
    align-items: center;
}

.thankyou-container {


  max-width: 1200px;
	 margin: 0 auto;
   align-items: start;
   gap: 4rem;
   display: grid;
    grid-template-columns   :    1fr 1fr;

}

.success-content {
    text-align: center;
}

.success-icon {
	margin-bottom  :     2rem;
}

.checkmark-circle {
  width :    120px;
    height   :        120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin: 0 auto;
   display: flex;
    align-items :  center;
  justify-content: center;
    position: relative;
}

.checkmark {
   width: 60px;
   height: 60px;
  border-radius: 50%;
  background: white;
     position: relative;
}

.checkmark::after {
  content: '✓';
  position: absolute;
    top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
  color: #27ae60;
  font-size: 2rem;
  font-weight: bold;
}

.thankyou-title {
  font-size: 3rem;
    margin-bottom   : 1rem;
}

.thankyou-subtitle {
    font-size: 1.3rem;
  margin-bottom: 3rem;
         opacity: 0.9;
}

.confirmation-details {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
    border-radius: 15px;
   text-align: left;
	
}

.confirmation-heading {
    font-size: 1.8rem;
     margin-bottom: 2rem;
      text-align: center; 

}

.next-steps {
  display    :   flex;
   flex-direction: column;
    gap: 1.5rem;
}

.step-item {
   display: flex;
  align-items: start;
  gap: 1rem;
}

.step-number	{
  background: rgba(255,255,255,0.2);
    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.2rem;
   margin-bottom: 0.5rem;
}

.step-content p {
  opacity: 0.9;
	line-height   :        1.6;
}

.additional-info {
    display: flex;
    flex-direction: column;
    gap   :  2rem;
}

.info-card {
  background: rgba(255,255,255,0.1);

   padding: 2rem;

   border-radius: 15px;
}

.card-title {
         font-size    :       1.5rem;
   margin-bottom: 1rem;
}

.card-text {
    line-height: 1.6;
	margin-bottom: 1.5rem;
   opacity: 0.9;
}

.preparation-tips h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
     }

.tips-list {
   list-style: none;
    padding: 0;
}


.tips-list li


{
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
         opacity: 0.9;
}

.tips-list li::before {


  content: '•';
   position: absolute;
    left: 0;
  color: rgba(255,255,255,0.7);
	}


.contact-reminder {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
   border-radius: 15px;
}

.contact-reminder h3 {

	  font-size  :       1.5rem;
    margin-bottom   :    1.5rem;}

.contact-options {
    display: flex;
   flex-direction: column;
   gap: 1rem;
}

.contact-option {
    display: flex;
   flex-direction: column;
    gap: 0.3rem;
}

.contact-option strong {
    font-size: 1.1rem;
}

.contact-option span {
   opacity: 0.9;
} 

.related-content {
	   background: white;

  padding: 5rem 2rem;

}

.content-wrapper {
               max-width: 1200px;
    margin:     0 auto;
}

.related-title {
  font-size: 2.5rem;
  text-align: center;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.related-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}  

.related-item {


  background: #f8f9fa;
         border-radius: 12px;
    overflow   :     hidden;
   transition: transform 0.3s ease;


}

.related-item:hover{
  transform: translateY(-5px);
}

.related-image {
	 width: 100%;
   height: 180px;
   object-fit: cover;
}

.related-item h3 {
   font-size:     1.3rem;
   color: #2c3e50;
    padding: 1.5rem 1.5rem 1rem;
}

.related-item p {
   color: #5a6c7d;
   line-height:   1.6;
    padding: 0 1.5rem 1.5rem;
}

.cta-return {
    text-align: center;
	display: flex;
  gap: 1.5rem;
   justify-content: center;
	flex-wrap: wrap;
}

.return-home, .learn-more
{


  border-radius: 8px;
    text-decoration: none;
    padding    :      15px 30px;
    transition: all 0.3s ease;
    font-weight: 600;

}

.return-home {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.learn-more


{
   border: 2px solid #34495e;
    color: #34495e;
}

.return-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.learn-more:hover {
  background: #34495e;
   color: white;
}@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-areas {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .cta-return {
        flex-direction: column;
    }

    .return-home, .learn-more {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .mission-values {
        gap: 1rem;
    }

    .value-item {
        padding: 1rem;
    }

    .confirmation-details, .info-card, .contact-reminder {
        padding: 1.5rem;
    }
}