* {

   margin: 0;
    padding: 0;
   box-sizing :      border-box;


}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    line-height :        1.6; 
  color: #2c3e50; 
  background: #fafbfc; 

}

.navigation-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    padding: 15px 0;

	    position: fixed;

	   top: 0;

	   width     :  100%;

	  z-index: 1000;

	  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container    {
    max-width: 1200px;
   margin: 0 auto;
        display:    flex;
    justify-content: space-between;
  align-items: center;
        padding: 0 20px;
}

.brand-logo {
   height: 45px;
  width: auto;
}

.menu-items {
    display     :    flex;
     gap: 40px;
}

.nav-link {
  color: white;
   text-decoration: none;
  font-weight :   500;
   transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-trigger {
    display: none;
  flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-trigger span {
  width: 25px;

  height  :    3px;

    background: white;

	 margin: 3px 0;

         transition: 0.3s;

    border-radius   :    2px;
}

.content-wrapper {
    margin-top :75px;


}  

.hero-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 80px 0;
               color: white;
}

.hero-container {
   align-items: center;
    gap: 60px;
  grid-template-columns :  1fr 1fr;
    display: grid;
    padding: 0 20px;
    max-width: 1200px;
  margin: 0 auto; 
	
}

.hero-content h1 {
	 line-height: 1.2;
	    font-size: 3.2rem;
	    font-weight: 700;
	  margin-bottom: 24px;
}

.hero-description {
         font-size: 1.25rem;
   margin-bottom: 40px;
  opacity: 0.95;
	 line-height  : 1.7;
}

.hero-actions {
   display: flex;
    gap: 20px;
  flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding : 15px 35px;
   border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
}

.primary-button {
  background: white;
  color  :  #f5576c;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.secondary-button {
       background: transparent;
   color   :      white;
   border    :   2px solid white;
	}

.secondary-button:hover {
  background: white;
   color: #f5576c;
  transform: translateY(-3px);
}

.hero-visual img {

    width: 100%;
   height: 400px;
   object-fit :       cover;
 border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);


}

.benefits-section {
    padding :      100px 0;
    background    :    white;
}

.section-container {
  max-width: 1200px;
   margin    :      0 auto;
    padding: 0 20px;
}

.benefits-section h2 {
  text-align     :      center;
  font-size: 2.8rem;
    margin-bottom: 60px;
    color     :     #2c3e50;
}

.benefits-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap     :   40px;
}

.benefit-item {
  text-align: center;

	 padding: 40px 30px;

    background: #f8f9fa;

	border-radius: 15px;

  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-item h3 {
   font-size: 1.5rem;
	margin-bottom: 20px;
               color: #667eea;
}

.benefit-item p {
    font-size :   1.1rem;
   line-height: 1.7;
    color: #6c757d;
}

.programs-section {
   padding     : 100px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.programs-section h2 {
   text-align: center; 
    font-size: 2.8rem; 
      margin-bottom: 60px; 
    color: #2c3e50; 

}

.programs-showcase {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
   gap: 50px;
}

.program-card {
   background: white;
    border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.program-card:hover	{
  transform: translateY(-10px);
}

.program-card img {
               width: 100%;
   height: 250px;
   object-fit: cover;
} 

.program-info {


   padding: 35px;
	}

.program-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
    color: #2c3e50; 
	
}

.program-info p {
       margin-bottom: 25px;
   color: #6c757d;
    line-height: 1.7;
}

.program-features {
	list-style  :none;
}


.program-features li  {
   padding: 8px 0;
    color: #667eea;
  position: relative;
   padding-left: 25px;
}

.program-features li:before {
  content: "✓";
    position: absolute;
  left: 0;
   color: #28a745;
   font-weight: bold;
} 

.testimonials-section {
   padding: 100px 0;
  background: white;
}

.testimonials-section h2 {
    text-align: center;
			font-size: 2.8rem;
   margin-bottom: 60px;
   color: #2c3e50;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.testimonial-item {
    background: #f8f9fa;
  padding: 35px;
               border-radius: 15px;
  border-left    : 5px solid #667eea; 

}

.testimonial-item p {
   margin-bottom: 20px;
  line-height: 1.7;
    font-size: 1.1rem;
	font-style: italic;
}

.testimonial-author strong {
    color: #2c3e50;
  display: block;
  margin-bottom   :        5px;
}

.testimonial-author span {
      color: #6c757d;
   font-size: 0.9rem;
}

.cta-section    {
   padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap  :        60px;
    align-items: center;
}

.cta-content img {
    width: 100%;
  height: 350px;
        object-fit    :cover;
                    border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-text h2 {
    font-size: 2.5rem;
   margin-bottom: 25px;
}

.cta-text p {
    font-size: 1.2rem;
       margin-bottom : 35px;
               line-height: 1.7;
    opacity: 0.95;
}

.cta-button {
  background: white;
   color: #667eea;
    padding: 18px 40px;
   border-radius: 50px;
	 text-decoration: none;
  font-weight  :     600;
   font-size: 1.1rem;
    display: inline-block;
     transition:all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25); 

}

.coaching-section {
	padding: 100px 0;
    background  :     white;
}

.coaching-section h2   {
  text-align: center;
   font-size: 2.8rem;
   margin-bottom: 60px;
    color: #2c3e50;
}

.coaching-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coaching-description p {
    line-height: 1.7;
   font-size: 1.2rem;
   color: #6c757d;
  margin-bottom: 30px;
}

.coaching-benefits h4  
  {
  font-size: 1.3rem;
   margin-bottom: 20px;
  color: #2c3e50;
}

.coaching-benefits ul    {
    list-style: none;
}

.coaching-benefits li {
  padding: 10px 0;
  color: #667eea;
   position: relative;
  padding-left: 25px;
	font-size: 1.1rem;
}

.coaching-benefits li:before {
  content: "→";
   position: absolute;
   left: 0;
   color: #f5576c;
  font-weight: bold;
}

.coaching-visual img {
    width: 100%;
       height: 400px;
  object-fit: cover;
	border-radius   :  20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-section {
	    padding: 100px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
     }

.contact-container		{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   padding: 0 20px;
}

.contact-info h2 {
  font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

.contact-details {
    display: flex;

    flex-direction: column;

  gap: 20px;
}

.contact-item {


    display:       flex;
     flex-direction: column;
   gap: 5px;

}

.contact-item strong {
  font-size: 1.1rem;
}

.contact-item span {
   opacity:0.9;
}

.contact-form {
    background: white;
  padding: 40px;
   border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
   display   :  block;
    margin-bottom   :    8px;
  color: #2c3e50;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
    border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease;
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
    border-color  : #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 18px 40px;
  border: none;
   border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
	width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer-section {
   background: #2c3e50;
    color: white;
         padding: 60px 0 20px;
} 

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
  display :      grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
  gap :40px;
    padding: 0 20px;
}

.footer-brand p {
   margin-top: 20px;
   line-height: 1.7;
  opacity: 0.9;
	}

.footer-logo {
   height: 40px; 
	  width: auto; 
	  filter: brightness(0) invert(1);
}

.link-group h4 {
	   margin-bottom: 20px;
     color: #667eea;
   font-size: 1.2rem;
	}

.link-group ul {
    list-style :       none;

}

.link-group li {
   margin-bottom: 10px;
}

.link-group a {
   color: #bdc3c7;
   text-decoration: none;
   transition  :color 0.3s ease;
}

.link-group a:hover {
   color: white; 
	
}

.footer-bottom {
   margin-top: 40px;
  padding-top: 20px;
 border-top: 1px solid #34495e;
   text-align: center;
  opacity: 0.8;
}@media (max-width: 768px) {
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .menu-items.active {
        display: flex;
    }

    .mobile-trigger {
        display: flex;
    }

    .mobile-trigger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-trigger.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-trigger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .programs-showcase {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .coaching-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .programs-showcase {
        grid-template-columns: 1fr;
    }

    .program-card {
        min-width: unset;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.about-hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding     :      120px 0 80px;
   color: white;
}

.about-hero-container {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
    grid-template-columns : 1.2fr 1fr;
  gap: 50px;
    align-items: center;
       padding: 0 20px;
}

.hero-text-content h1 {
  font-size: 3rem;
   font-weight: 700;
	margin-bottom: 25px;
  line-height: 1.2;
}  

.hero-subtitle {
    font-size: 1.3rem;
  line-height :   1.7;
    opacity: 0.95;
}

.hero-image-wrapper img {
       width: 100%;
	height: 380px;
               object-fit: cover;
    border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);


}

.mission-section {
  background: white;
   padding: 100px 0;
}

.mission-content h2 {
  font-size: 2.8rem;
	margin-bottom: 30px;
    color: #2c3e50;
   text-align: center;
}

.mission-description		{
       margin-left: auto;
  color: #6c757d;
    margin-right    :auto;
   font-size     :  1.3rem;
    line-height   :    1.8;
    margin-bottom: 60px;
   max-width: 800px;
  text-align: center;
}

.values-grid	{

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap    :       40px;
  margin-top: 60px;

}  

.value-item {
   text-align: center;
  padding: 35px 25px;
    background: #f8f9fa;
  border-radius: 15px;
    transition: transform 0.3s ease;
  border-top: 4px solid #667eea;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.value-item h3     {
  margin-bottom: 15px;
    font-size: 1.4rem;
    color: #2c3e50;
}


.value-item p {
   line-height: 1.7;
  color: #6c757d;
}  

.team-section {

	  padding: 100px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

.team-section h2 {
   font-size: 2.8rem;
   text-align: center;
    margin-bottom: 70px;
   color: #2c3e50;
}

.team-members 
 {
   display: flex;
  flex-direction   :    column;
   gap :  60px;
}

.team-member {
  display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
  border-radius:       20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    align-items: center;
}

.team-member:nth-child(even) {
      grid-template-columns: 1fr 300px;


}

.team-member:nth-child(even) .member-photo {
	order: 2;
}

.team-member:nth-child(even) .member-info {
   order: 1;
}

.member-photo img {
   width: 100%;
   height: 300px;
   object-fit: cover;
  border-radius: 15px;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
   color:      #2c3e50;
}

.member-role {


  font-size: 1.1rem;
    color: #667eea;
                    font-weight: 600;
  margin-bottom: 20px;
	}

.member-description {
    font-size: 1.1rem;
               line-height: 1.7;
   color: #6c757d;
   margin-bottom: 25px;
}

.member-achievements {
       display: flex;
	 flex-wrap: wrap;
    gap: 10px;
}

.member-achievements span

{


    background   :  #667eea;
   color: white;
   padding: 6px 12px;
                    border-radius: 20px;
    font-size: 0.9rem;
  font-weight: 500;

}

.approach-section {
    padding: 100px 0;
   background: white;
}

.approach-container {
     max-width: 1200px;
  margin :     0 auto;
    padding: 0 20px;
    display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
   align-items: center;
     }

.approach-content h2
	{
	 font-size   :      2.8rem;
 color:#2c3e50;
      margin-bottom: 25px;
}

.approach-intro {
    font-size: 1.2rem;
		line-height:1.7;
    color: #6c757d;
  margin-bottom: 50px;
}

.methodology-steps {
   display     :        flex;
   flex-direction: column;
       gap: 30px;
}

.method-step {

	  display: flex; 
	  gap: 25px; 
	   align-items: flex-start;}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
				 height: 50px;
    border-radius  : 50%;
    display   :        flex;
   align-items: center;
  justify-content: center;
    font-weight: 700;
	font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
   font-size :    1.3rem;
         margin-bottom: 10px;
   color: #2c3e50;

}

.step-content p {
  line-height: 1.7;
    color: #6c757d;
}

.approach-visual img {
  width:      100%;
  height: 450px;
  object-fit: cover;
    border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.experience-section {
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
          text-align: center;
}

.experience-section h2 {
  font-size: 2.8rem;
    margin-bottom: 60px;
}

.stats-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 40px;
}

.stat-item
{
  text-align    : center;
}

.stat-number {
	  font-size   :  3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
   color: #fff;


}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.philosophy-section {
  padding: 100px 0;
   background: #f8f9fa;
}

.philosophy-container {
  max-width: 800px;
  margin: 0 auto;
   padding: 0 20px;
       text-align: center;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
  color   :    #2c3e50;
}

.philosophy-text p {
  font-size: 1.2rem;
	line-height: 1.8;
	 color: #6c757d;
   margin-bottom: 25px;
}

.thankyou-hero-section {
	  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
		 padding    : 120px 0 80px;
  color: white;
    text-align: center;}

.thankyou-container	{
  max-width: 800px;
  margin: 0 auto;
   padding: 0 20px;
}

.success-icon	{
  margin-bottom: 40px;
}

.checkmark-circle   {
   width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
    display: flex;
   align-items: center;
    justify-content: center;
    margin: 0 auto;
	position: relative;
}

.checkmark {
                    width: 40px;
   height: 20px;
  border: 4px solid white;
   border-top: none;
	 border-right: none;
  transform: rotate(-45deg);
  margin-top: -10px;
}

.thankyou-content h1 {
    font-size: 3.2rem;
   font-weight: 700;
  margin-bottom: 25px;
}

.thankyou-subtitle {
  font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.next-steps-section {
   padding: 100px 0; 
  background: white;}

.next-steps-section h2 {
   font-size: 2.8rem; 
	   margin-bottom: 60px; 
	  text-align: center; 
	    color: #2c3e50;
}

.steps-timeline {
    max-width: 800px;
    margin  : 0 auto;
  position: relative;
}

.steps-timeline::before {

	  content: '';
               position: absolute;
	left: 25px;
   top: 0;
	bottom: 0;
  width: 2px;
     background: #e9ecef;
	}

.timeline-item {
    display: flex;
        gap: 30px;
   margin-bottom  : 50px;
  position: relative;
}

.timeline-marker
{
   flex-shrink: 0;
   position: relative;
  z-index: 2;
}

.timeline-marker .step-number {
                    width: 50px;
       height    :50px;
     background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
     color: white;
       border-radius: 50%;
   	 display: flex;
     align-items: center;
       justify-content: center;
     font-weight: 700;
     font-size: 1.2rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  color: #2c3e50;


}

.timeline-content p {
    line-height: 1.7;
  color: #6c757d;
    margin-bottom: 10px;
}

.time-estimate {
        background: #e3f2fd;
   color: #1976d2;
   padding :        4px 12px;
   border-radius: 15px;
  font-size:0.9rem;
  font-weight: 500;
}

.while-waiting-section {
  padding: 100px 0;
   background: #f8f9fa;
}

.waiting-container {
   max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
    display: grid;
  grid-template-columns: 1.2fr 1fr;
    gap: 60px;
  align-items: center;
}

.waiting-content h2 {
  font-size: 2.5rem;
    margin-bottom: 25px;
	color: #2c3e50;
}

.waiting-content > p {
 font-size: 1.2rem;
    line-height: 1.7;
          color: #6c757d;
   margin-bottom: 40px;
}

.preparation-questions {
	display: flex;
       flex-direction     :     column;
  gap: 30px;
}

.question-item {
  background: white;
  padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #28a745;
}

.question-item h4 {
    font-size: 1.2rem;
   margin-bottom: 10px;
    color: #2c3e50;
}  

.question-item p {
   color: #6c757d;
    line-height: 1.6;
}

.waiting-visual img {
    width: 100%;
	height: 400px;
    object-fit: cover;
   border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resources-section {
   padding: 100px 0;
   background  :    white;
}

.resources-section h2 {
    font-size: 2.8rem;
  text-align: center;
   margin-bottom: 25px;
     color     : #2c3e50;
}

.resources-intro {
   font-size: 1.2rem;
  text-align  :  center;
        line-height: 1.7;
   color: #6c757d;
    margin-bottom:   60px;
   max-width: 800px;
     margin-left: auto;
    margin-right: auto;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap    :        35px;
}

.resource-item {


   background: #f8f9fa;
   padding: 30px;
  border-radius: 15px;
    border-top   :  4px solid #28a745;
    transition: transform 0.3s ease;

}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.resource-item h3 {
   font-size: 1.3rem;
   margin-bottom: 15px;
   color  :   #2c3e50; 

}

.resource-item p {
   line-height :        1.7;

   color: #6c757d;
}

.emergency-contact-section {
  padding  :  80px 0;
  background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
  color: #2c3e50;
}

.emergency-container {
  max-width :    800px;
  margin: 0 auto;
  padding: 0 20px;
        text-align: center;
}

.emergency-content h2 {
   font-size  : 2.5rem;
   margin-bottom: 25px;
}

.emergency-content > p {
    font-size: 1.2rem;
    line-height   :     1.7;
   margin-bottom: 40px;
}

.emergency-contact-info


{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.contact-method {
  background: rgba(255,255,255,0.9);
    padding: 30px;
   border-radius: 15px;
	
}

.contact-method h4		{
     margin-bottom: 10px;
  color: #2c3e50;
    font-size: 1.3rem;
}

.contact-method p {
  font-size: 1.1rem;
	margin-bottom: 8px;
    font-weight: 600;
}

.contact-method span {
   font-size: 0.9rem;
    opacity: 0.8;
}

.back-to-site-section {
   padding: 100px 0;
   background: white;
 text-align: center;
}

.back-container h2 {
    font-size: 2.5rem;
   margin-bottom: 25px;
  color: #2c3e50;
}

.back-container p {
   font-size  :  1.2rem;
  line-height: 1.7;
  color: #6c757d;
   margin-bottom: 40px;
   max-width:    600px;
   margin-left: auto;
   margin-right: auto;
}

.navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content:        center;
  flex-wrap: wrap;

}

.nav-button {
   padding: 15px 35px;
	        border-radius: 50px;
	   text-decoration: none;
	   font-weight  :     600;
	        transition: all 0.3s ease;
	    display    :     inline-block;
	
}

.nav-button.primary {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color   : white;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.nav-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
     }

.nav-button.secondary {
    background: transparent;
        color: #28a745;
   border: 2px solid #28a745;

}

.nav-button.secondary:hover {
    background:    #28a745;
    color: white;
  transform: translateY(-3px);
}@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .team-member {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .team-member:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .team-member:nth-child(even) .member-photo,
    .team-member:nth-child(even) .member-info {
        order: unset;
    }

    .approach-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .waiting-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .emergency-contact-info {
        grid-template-columns: 1fr;
    }

    .navigation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .member-achievements {
        justify-content: center;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}