* {
  margin  :       0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
        color:        #333;
               background-color: #fafafa;
} 

.main-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
   position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navigation-container {
   justify-content: space-between;
    align-items: center;
   margin  :  0 auto;
  display: flex;
    padding: 1rem 2rem;
   max-width: 1200px;
}

.company-logo {
 height: 42px;
  width: auto;
}

.menu-items {
	display: flex;
   gap: 2rem;
}

.nav-link {
       color: white;
                    text-decoration: none;
   font-weight   :  500;
    padding  :   0.5rem 1rem;
   border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active
	{
  background-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.mobile-toggle {
	  display: none;
   flex-direction: column;
    cursor: pointer;
    gap: 4px; 

}

.burger-line {
   width: 25px;
   height: 3px;
   background-color: white;
   transition: 0.3s;
}

.hero-area {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding     :      4rem 0;
       min-height: 85vh;
    display: flex;
   align-items: center;
}

.hero-content {
    max-width: 1200px;

	                    margin: 0 auto;

	    padding: 0 2rem;

	    display: grid;

	   grid-template-columns: 1fr 1fr;

	    gap: 4rem;

	        align-items: center;
}

.text-section h1 {
     font-size: 3.2rem;
   font-weight: 700;
    color     :     #2d3748;
    margin-bottom: 1.5rem;
  line-height : 1.2; 
	
}

.hero-description {
    margin-bottom: 2.5rem;
   color : #4a5568;
  font-size: 1.25rem;
   line-height: 1.6;
}

.hero-actions {
   display  :      flex;
   gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 1rem 2rem;
   text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
	 display: inline-block;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.secondary-button {

	  background: transparent; 
	 -o-transition: all 0.3s ease; 
  color:      #667eea; 
    padding: 1rem 2rem; 
   text-decoration: none; 
    -webkit-transition: all 0.3s ease; 
    border    :       2px solid #667eea; 
   -moz-transition: all 0.3s ease; 
   border-radius   :   8px; 
	font-weight: 600; 
    transition: all 0.3s ease; 
   display: inline-block;

}

.secondary-button:hover 
 {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
     }

.hero-image {
     width    :      100%;
  height: auto;
   border-radius   :       15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefits-showcase     {
    padding :        5rem 0;
    background: white;
}

.section-container {
    max-width: 1200px;
  margin: 0 auto;
    padding  :       0 2rem;
}

.benefits-showcase h2 {
      margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
	 font-weight: 700;
   color: #2d3748;
	}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
}

.benefit-card {
         background: #f8fafc;
   padding: 2.5rem;
   border-radius: 12px;
   border-left: 4px solid #667eea;
  transition: all 0.3s ease;}

.benefit-card:hover		{
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);


}

.benefit-card h3
	{
    font-size: 1.5rem;
   color: #2d3748;
   margin-bottom: 1rem;
    font-weight: 600;
}

.services-overview {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.content-layout {
    max-width: 1200px;
   margin  :    0 auto;
    padding: 0 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
        gap: 4rem;
   align-items: center;
}

.services-image {
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);

}

.services-content h2 {
  font-size: 2.5rem; 
    margin-bottom: 2rem; 
   color: #2d3748; 
    font-weight: 700;
}

.service-item {
    margin-bottom: 2rem;
   padding: 1.5rem;
  background: white;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	
}

.service-item h4 {
  font-size: 1.25rem;
  color: #667eea;
   margin-bottom   :     0.5rem;
  font-weight: 600;
}

.cta-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-container {
   max-width     :   1200px;
     margin: 0 auto;
 padding: 0 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
	
}

.cta-content h2 {
  font-weight: 700;

	    font-size: 2.5rem;

	  margin-bottom: 1.5rem;
}

.cta-content p {
   margin-bottom: 2rem;
  font-size     :  1.1rem;
  opacity: 0.9;
}

.cta-button {
   background  :        white;
  color: #667eea;
  padding: 1rem 2rem;
   text-decoration: none;
         border-radius: 8px;
	font-weight: 600;
   transition: all 0.3s ease;
               display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
	  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

.cta-image    {
  width   :    100%;
	height: auto;
    border-radius: 12px;
}

.methodology-section  
  {
    background: white;
    padding: 5rem 0;

}

.methodology-wrapper {
	 max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
} 

.methodology-section h2 {
   text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
   margin-bottom: 3rem;
   font-weight: 700;
}

.methodology-steps {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;

}



.step-card {
  text-align: center;
    padding   :    2rem;
   border-radius: 12px;
	background: #f8fafc;
   transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number


{
   font-size: 3rem;
                    margin-bottom   :  1rem;
	color: #667eea;
	font-weight: 700;
}

.step-card h3 {

  color: #2d3748;
  margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.programs-gallery{

	  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	}

.gallery-container
	{

    padding  :      0 2rem;
      max-width: 1200px;
       margin: 0 auto;
     }

.programs-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
  color  : #2d3748;
   margin-bottom: 3rem;
   font-weight: 700;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.program-tile {
  background: white;
	border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition :all 0.3s ease;
}

.program-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.program-image  {
    width: 100%;
  height: 250px;
    object-fit: cover; 

}

.program-info {
   padding: 2rem;
	
}

.program-info h3 {
  font-size: 1.5rem;
  color: #2d3748;
   margin-bottom: 1rem;
   font-weight: 600;
}

.contact-section   {

      padding: 5rem 0;
    background     :  white;

}

.contact-container {
   max-width: 800px;
    margin: 0 auto;
   padding: 0 2rem;
}

.contact-header   {
    text-align  : center;
  margin-bottom: 3rem;}

.contact-header h2 {
   font-size: 2.5rem;
                    color: #2d3748;
    margin-bottom:     1rem;
   font-weight: 700;
}

.contact-header p    {
  font-size:   1.1rem;
  color: #4a5568;
}

.contact-form {
  background: #f8fafc;
  padding  :       3rem;
    border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
   flex-direction: column;
}

.form-group label {
  font-weight: 600;
    color :  #2d3748;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
       border: 2px solid #e2e8f0;
     border-radius: 8px;
      font-size: 1rem;
                  transition: all 0.3s ease;
}

.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: 1rem 3rem;
          border: none;
    border-radius :        8px;
	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.4);
}

.site-footer {
  color     :      white;
    background: #2d3748;
    padding: 3rem 0 1rem;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
  display: grid;
	grid-template-columns: auto 1fr;
  gap  :    3rem;
    align-items: start;
}

.footer-logo{
  height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display     :    grid;
       grid-template-columns     :1fr 1fr;
 gap: 2rem;

}

.contact-details p {
 margin-bottom: 0.5rem;
	 color: #cbd5e0;
}

.footer-navigation
{

	  display: flex;

	  flex-direction: column;

	    gap: 0.5rem;



}

.footer-navigation a {


   color    :  #cbd5e0;
	text-decoration: none;
  transition: color 0.3s ease; 
	
}

.footer-navigation a:hover     {
    color: white;
}

.footer-bottom {
   max-width: 1200px;
   margin: 2rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid #4a5568;
   text-align: center;
    color: #a0aec0;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #667eea;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .menu-items.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .text-section h1 {
        font-size: 2.5rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navigation-container {
        padding: 1rem;
    }
    
    .text-section h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}.about-hero   {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding     :   4rem 0;
  min-height:   70vh;
    display: flex;
  align-items: center;
}

.about-hero-wrapper {
   max-width: 1200px;
  margin: 0 auto;
                    padding: 0 2rem;
  display:    grid;
  grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  align-items: center;
}

.about-intro h1 {
  font-size: 3rem;
	font-weight: 700;
   color: #2d3748;
         margin-bottom: 1.5rem;
       line-height: 1.2; 

}

.about-subtitle {
   font-size: 1.2rem;
                       color: #4a5568;
     line-height   :     1.7;
}

.about-hero-image {
    width  :100%;
	height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.company-story {
       padding: 5rem 0;
               background: white;

}

.story-container {
   max-width: 1200px;
	margin: 0 auto;
          padding: 0 2rem;
}

.company-story h2 {
    text-align: center;
	 font-size: 2.5rem;
   color: #2d3748;
    margin-bottom: 3rem;
   font-weight: 700;
}

.story-content {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 4rem;
   align-items: start;
}

.story-text p{

    font-size: 1.1rem;
  line-height: 1.8;
    color: #4a5568;
  margin-bottom: 1.5rem;
	}

.story-stats {
                       display     :   grid;
  grid-template-columns: 1fr 1fr;
    gap   :    2rem;


}

.stat-item {
       text-align: center;
   padding: 2rem 1rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
   display: block;
   font-size    :        2.5rem;
    font-weight: 700;
  color: #667eea;
	margin-bottom: 0.5rem;
}

.stat-label {
 font-size: 0.9rem;
   color: #4a5568;
   font-weight: 500;
}

.expertise-areas {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.expertise-wrapper {
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.expertise-areas h2 {
    text-align   :    center;
    font-size: 2.5rem;
	color: #2d3748;
   margin-bottom: 3rem;
    font-weight: 700;
}

.expertise-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 2rem;
}

.expertise-card {
   background: white;
   border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.expertise-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);


}

.expertise-image {
	  width    :       100%;
                    height: 220px;
  object-fit: cover;


}

.expertise-info {
 padding     :  2rem;
}

.expertise-info h3 {
   font-size: 1.5rem;
    color: #2d3748;
  margin-bottom: 1rem;
   font-weight     :  600;
}

.expertise-info p {
  color: #4a5568;
  line-height: 1.6;
}

.methodology-approach {
   padding: 5rem 0;
     background: white;
}

.methodology-container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
} 

.methodology-approach h2 
 {
    text-align: center;
   font-size  :2.5rem;
   color: #2d3748;
    margin-bottom: 3rem;
   font-weight :    700;
}

.methodology-layout {
  display: grid;
    grid-template-columns: 1.2fr 1fr;
   gap: 4rem;
    align-items: center;
}

.methodology-text h3 {
   font-size: 1.5rem;
   color: #667eea;
       margin-bottom: 1rem;
   margin-top: 2rem;
    font-weight: 600;
}

.methodology-text h3:first-child {
  margin-top: 0;


}

.methodology-text p {
  color: #4a5568;
    line-height:       1.7;
  font-size    :        1.05rem;
}

.methodology-image {
    width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.values-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.values-wrapper {
  max-width: 1200px;
  margin: 0 auto;
   padding   :   0 2rem;
} 

.values-section h2  {


   text-align: center;
   font-size  :      2.5rem;
   margin-bottom: 3rem;
    font-weight: 700; 

}

.values-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
  background: rgba(255,255,255,0.1);
    border-radius: 12px;
  backdrop-filter: blur(10px);
   transition: all 0.3s ease;
	
}

.value-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.value-item h4 {
   font-size: 1.5rem;
	margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p {
  opacity: 0.9;
   line-height   :   1.6;
}  

.commitment-section {
       padding: 5rem 0;
    background   :white;
     }

.commitment-container


{
    max-width    :      800px;
  margin: 0 auto;
   padding: 0 2rem;
    text-align: center;
}

.commitment-section h2 {
  font-size  :       2.5rem;
  color: #2d3748;
	margin-bottom    :       2rem;
  font-weight   :        700;
}

.commitment-content p {


  font-size: 1.1rem;
   color: #4a5568;
	 line-height: 1.8;
  margin-bottom: 2rem;
     }

.commitment-actions {
  display: flex;
    gap: 1rem;
   justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.back-home-btn,
.contact-btn {
   padding: 1rem 2rem;
  text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.back-home-btn
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.contact-btn {
  color    :   #667eea;
  background: transparent;
  border: 2px solid #667eea; 

}


.back-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.contact-btn:hover{
	background: #667eea;
    color: white;
  transform: translateY(-2px);
}

.thank-you-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 90vh;
  display: flex;
    align-items: center;
	padding: 4rem 0;
}

.thank-you-container {
    max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.success-message    {
     text-align: center;
    margin-bottom: 4rem;
}

.success-icon	{
  margin-bottom: 2rem;
}

.checkmark {
   width: 80px;
   height: 80px;
   border-radius: 50%;
  display: block;
   stroke-width: 3;
          stroke    :       #4CAF50;
   stroke-miterlimit: 10;
  margin: 0 auto;
    position: relative;
    animation: checkmark-appear 0.6s ease;
}

.checkmark-circle {
  stroke-dasharray: 166;
             stroke-dashoffset:    166;
     stroke-width: 3;
      stroke-miterlimit: 10;
      stroke: #4CAF50;
     fill: none;
      width: 80px;
       height     :      80px;
       border-radius    :  50%;
      position: absolute;
     animation: checkmark-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
	
}

.checkmark-stem {
    stroke-dasharray     :        48;
    stroke-dashoffset: 48;
  animation: checkmark-stem 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
   position: absolute;
    left: 28px;
   top: 40px;
     width: 16px;
   height: 8px;
  border-bottom: 3px solid #4CAF50;
   border-left: 3px solid #4CAF50;
  transform: rotate(-45deg);
}

.checkmark-kick {
   stroke-dasharray: 78;
  stroke-dashoffset: 78;
  animation: checkmark-kick 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  position: absolute;
	left: 42px;
   top: 35px;
   width: 24px;
    height: 12px;
               border-bottom: 3px solid #4CAF50;
  border-right: 3px solid #4CAF50;
  transform: rotate(45deg);
}
@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 166;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark-appear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.success-message h1 {
    font-size: 3rem;
               color: #2d3748;
	margin-bottom: 1rem;
   font-weight: 700;
}

.thank-you-subtitle {
   font-size: 1.2rem;
   color:       #4a5568;
  line-height: 1.6;
}

.next-steps {
	background: white;
	 padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
}

.next-steps h2 {
   text-align: center;
   font-size: 2rem;
   color: #2d3748;
   margin-bottom   :    2rem;
   font-weight: 700;
}

.steps-timeline {
    display :     grid;
     grid-template-columns: 1fr;
      gap: 2rem;
}

.timeline-step {
  display   :      grid;
    grid-template-columns: auto 1fr;
   gap: 1.5rem;
    align-items: start;
}

.step-indicator {
	width   : 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
	align-items: center;
    justify-content  : center;
  font-weight     :700;
  font-size: 1.2rem;
}

.step-content h3 {
		font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-content p {
    color :#4a5568;
  line-height: 1.6;
}

.additional-resources	{

   margin-bottom: 3rem;
	}

.additional-resources h2 {
	    text-align: center;
   font-size:  2rem;
  color: #2d3748;
   margin-bottom: 2rem;
        font-weight: 700;

}

.resources-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.resource-card {
  background  :     white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.resource-card:hover   {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}  

.resource-image {
    width: 100%;
	height: 180px;
   object-fit: cover;
}

.resource-content {
    padding: 1.5rem;


}

.resource-content h3 {
  font-size   : 1.3rem;
   color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight:    600;
}

.resource-content p    {
	color :   #4a5568;
  line-height: 1.6;
}

.contact-alternative {
   background     :white;
   padding: 3rem;
	border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
    text-align: center;
}

.contact-alternative h2 {
      font-size :     2rem;
    color: #2d3748;
	margin-bottom: 1rem;
   font-weight: 700;
}

.contact-alternative > p {
   color: #4a5568;
   margin-bottom: 2rem;
   font-size: 1.1rem;
}

.urgent-contact {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 2rem;
}

.contact-method {
	padding: 2rem;
  background: #f8fafc;
   border-radius: 12px;
   border-left: 4px solid #667eea;
	
}

.contact-method h4
	{
   font-size: 1.2rem;
	color: #667eea;
  margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method p {
  color: #2d3748;
    font-weight: 500;
  margin-bottom: 0.5rem;
}

.availability {
    font-size: 0.9rem;
    color: #4a5568;


}

.return-navigation {

	   text-align: center;
     }

.return-navigation h2 {
  font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 700;
}

.navigation-options {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 1.5rem;
}

.nav-option {
   background: white;
   padding: 2rem;
   border-radius: 12px;
         text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
  display: block;
}

.nav-option:hover {
     transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
	}

.nav-option.primary {
   border-left: 4px solid #667eea;
}

.nav-option.secondary		{
  border-left: 4px solid #764ba2;
}

.nav-option h4 {
    font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
   font-weight: 600;
}

.nav-option p {
   color: #4a5568;
    line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-intro h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-message h1 {
        font-size: 2.5rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .urgent-contact {
        grid-template-columns: 1fr;
    }
    
    .navigation-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-intro h1 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .success-message h1 {
        font-size: 2rem;
    }
    
    .next-steps,
    .contact-alternative {
        padding: 2rem 1.5rem;
    }
}.policy-section {

   max-width: 800px;
          margin     :       0 auto;
 padding: 2rem;
   background: #f8fafc;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);

}

.policy-section h2 {
   font-size: 1.8rem;
   color  :        #2d3748;
  margin-bottom: 1rem;
        font-weight: 600;
}

.policy-section p


{
  font-size: 1.1rem;
	 color: #4a5568;
   line-height     :1.6;
    margin-bottom: 1.5rem;
}

.policy-section ul {
        list-style-type: disc;
    margin-left: 2rem;
   margin-bottom   : 1.5rem;
}

.policy-section li {
    font-size: 1.1rem;
   color: #4a5568;
  margin-bottom  :   0.5rem;
}