* {
   margin: 0;
    padding: 0;
   box-sizing: border-box; 

}

body {
  font-family: 'Arial', sans-serif;
	 line-height: 1.6;
  color: #333;
}

.container {
	 max-width     :   1200px;
    margin: 0 auto;
  padding    :        0 20px;
}

.main-header 
 {
   position: fixed;
  top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
        z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
        display: flex;

	  justify-content: space-between;

	   align-items: center;

	  padding: 1rem 2rem;

	   max-width: 1200px;

		margin: 0 auto;


}


.company-logo {


   height: 40px;
    width: auto;

}

.nav-menu {
  display: flex;
   gap: 2rem;
}

.nav-link {
      text-decoration: none;
	 color: #333;
  font-weight: 500;
	 transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.burger-menu {
    display: none;
  flex-direction: column;
    cursor: pointer;
   gap: 4px;
}

.burger-menu span {
   width: 25px;
  height: 3px;
   background: #333;
   transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-section {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); 

     }

.hero-content   {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
  padding: 0 2rem;
}

.hero-text h1{
    font-size: 3.5rem;
   font-weight: bold;
	color     :    #1e293b;
  margin-bottom: 1.5rem;
   line-height: 1.2;
	}

.hero-text p {


  margin-bottom: 2rem;
   font-size: 1.2rem;
    color: #64748b; 


}

.hero-buttons {
    display    :    flex;
  gap: 1rem;


}

.primary-btn{
  background: #6366f1;
  color   :      white;
  padding: 1rem 2rem;
  text-decoration: none;
   border-radius: 8px;
  font-weight :  600;
  transition: background 0.3s ease; 

} 

.primary-btn:hover {
   background     : #5146e5;
}

.secondary-btn {
    border-radius: 8px;
  color: #6366f1;
  border: 2px solid #6366f1;
	transition: all 0.3s ease;
   text-decoration: none;
   padding: 1rem 2rem;
  background: transparent;
  font-weight  :     600;
}

.secondary-btn:hover {
   background: #6366f1;
    color   :      white;
}

.hero-image img {

  width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}

.services-overview {
   padding: 80px 0;
   background   :white;
}

.services-overview h2 {
    text-align: center;
	 font-size: 2.5rem;
	color: #1e293b;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
}

.service-card {
	   background:     #f8fafc;
	padding: 2rem;
          border-radius   :      12px;
  text-align:       center;
     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-card h3 {


    color   :        #1e293b;
	font-size     :  1.5rem;
    margin-bottom: 1rem;
	}

.service-card p {
   color: #64748b;
                    line-height: 1.6;
}

.values-section {
   padding :80px 0;
  background: #f1f5f9;
}

.values-content {
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  align-items:    center;
 display: grid;
}

.values-text h2 {
	font-size: 2.5rem;
  color: #1e293b;
    margin-bottom: 1.5rem;
}

.values-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}



.values-list {
  list-style: none;
   padding: 0;
}

.values-list li {
    color: #475569;
   padding    :    0.5rem 0;
  position: relative;
   padding-left: 2rem;
}

.values-list li::before		{
  content: '✓';
   position: absolute;
    left: 0;
  color: #10b981;
    font-weight: bold;
}

.values-image img {
   width: 100%;
    height: auto;
  border-radius  :     12px;
}

.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2  
  {
   text-align: center;
   font-size: 2.5rem;
  color: #1e293b;
    margin-bottom: 3rem;
}

.testimonials-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap    :        2rem;
}

.testimonial-card {
    background     : #f8fafc;
  padding: 2rem;
	 border-radius: 12px;
   border-left: 4px solid #6366f1;
     }

.testimonial-card p {
   font-style: italic;
   color: #475569;
  margin-bottom: 1rem;
   font-size: 1.1rem; 

}

.testimonial-author {
   color: #6366f1;
    font-weight: 600;
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
    text-align     :center;
}

.cta-content {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
  margin-bottom: 3rem;
}

.cta-text h2 {


   font-size: 2.5rem;
        margin-bottom: 1rem;

}

.cta-text p {
   font-size     :1.2rem;
    opacity: 0.9;

}

.cta-image img
{
   width: 100%;
   border-radius: 12px;
   opacity: 0.9;

}



.cta-button {
    display: inline-block;

   background: white;

   color: #6366f1;

  padding: 1.2rem 2.5rem;

   text-decoration: none;

  border-radius: 8px;

    font-weight: 700;

     font-size     :1.1rem;

   transition  : all 0.3s ease;
}

.cta-button:hover {


  transform: translateY(-2px); 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

}

.learning-section {
    padding: 80px 0;
   background: #f8fafc;
}

.learning-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
	margin-bottom: 3rem;
	
}

.learning-content  
  {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;


}

.learning-text p {
	color: #64748b;
     font-size: 1.1rem;
    margin-bottom: 2rem;
}

.learning-benefits h3 {
          color: #1e293b;
	margin-bottom: 1rem;
}

.learning-benefits ul {
               list-style: none;

   padding: 0;
}

.learning-benefits li {
    color: #475569; 
    padding: 0.5rem 0; 
    position: relative; 
   padding-left: 2rem;
}

.learning-benefits li::before {


    font-weight:      bold;
   color: #6366f1;
  content: '→';
  left: 0;
   position: absolute;}

.learning-image img		{

    width: 100%;
    border-radius: 12px;


}  

.bounce-back-section {
    padding: 80px 0;
  background: white;
}

.bounce-content h2 {
  text-align: center;
    font-size: 2.5rem;
      color: #1e293b;
   margin-bottom: 3rem;

}

.bounce-grid {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
	
}

.bounce-text p {
	 color: #64748b;
  font-size: 1.1rem;
   margin-bottom: 1.5rem;
}

.bounce-image img {
     width: 100%;
   border-radius: 12px;
	}  

.contact-section {
   background: #f1f5f9;
  padding: 80px 0;
}

.contact-section h2 {
                    text-align  :       center;
   font-size: 2.5rem;
  color: #1e293b;
    margin-bottom: 3rem;
}

.contact-content {

	    display: grid;
   grid-template-columns: 1fr 1fr;
        gap: 4rem;


}


.contact-form {
  background: white;
   padding: 2rem;
	 border-radius   :   12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
} 

.form-group label {
         display: block;
    color: #374151;
   font-weight    :600;
   margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
   border: 2px solid #e5e7eb;
	border-radius: 8px;
  font-size: 1rem;
   transition     :       border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color: #6366f1;
    outline   :        none;

}

.submit-btn {
   width     :       100%;
  background     :       #6366f1;
  color: white;
  padding: 1rem;
	border: none;
	border-radius: 8px;
	font-size :  1.1rem;
    font-weight: 600;
                    cursor : pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #5146e5;
}

.contact-info {
   background: white;
     padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-info h3 {
   color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
   color: #6366f1;
   display  :     block;
  margin-bottom: 0.5rem;
}

.contact-item p {
   color: #64748b;
   line-height: 1.6;
}

.main-footer {
  background: #1e293b;
  color: white;
   padding: 3rem 0 1rem;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4     {
  color: #6366f1;
  margin-bottom: 1rem;
   font-size: 1.2rem;
}

.footer-section p {
	color: #cbd5e1;
	line-height: 1.6;
   margin-bottom: 1rem;
	}

.footer-logo img     {

	   height: 40px;
       margin-bottom: 1rem;
}

.footer-links {
   list-style: none;
}

.footer-links li{
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
	text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #6366f1;
}

.footer-bottom {
   border-top: 1px solid #334155;
  margin-top: 2rem;
   padding-top    :  1rem;
  text-align: center;
   color  :   #94a3b8;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .values-content,
    .cta-content,
    .learning-content,
    .bounce-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}.nav-link.active {
  color     : #6366f1;
  font-weight: 700;
}

.about-hero {
    padding: 120px 0 60px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align  :       center;
}

.about-hero h1 {
	font-size: 3rem;
  margin-bottom: 1.5rem;
    font-weight: bold;
}

.hero-subtitle {
  font-size: 1.3rem;
   opacity: 0.95;
                    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.our-story {
	padding: 80px 0;
    background: white;
}

.story-content {
	display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
	align-items: center;
}

.story-text h2 {
   font-size :        2.5rem;
  color: #1e293b;
	 margin-bottom: 2rem;
}

.story-text p {
	color:   #64748b;
   font-size: 1.1rem;
          margin-bottom: 1.5rem;
  line-height: 1.7;
}


.story-image img {

	    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

.values-mission {
  padding: 80px 0;
    background: #f8fafc;
}

.values-mission h2 {
   text-align: center;
               font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.values-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;


}

.value-card {
    background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
    color :        #6366f1;
   font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-card p  
  {
    color: #64748b;
	line-height: 1.6;
}

.methodology {
   padding: 80px 0;
     background: white;
}

.methodology-content {
    grid-template-columns: 1fr 1fr; 
    align-items: start; 
   display: grid; 
  gap   :   4rem;
}

.methodology-text h2 {


  font-size: 2.5rem;
    color: #1e293b;
 margin-bottom: 1.5rem;
}  

.methodology-text p {
  color: #64748b;
  font-size: 1.1rem;
  margin-bottom    :    2rem;
   line-height: 1.7;
}

.methodology-steps {
   margin-top: 2rem;
}

.method-step {


  margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
     }

.method-step:last-child	{
  border-bottom: none;
}

.method-step h4 {
  color: #6366f1;
  font-size: 1.2rem;
   margin-bottom  : 0.5rem;
}

.method-step p {
	color: #64748b;
   margin: 0;
}

.methodology-image img {
  width: 100%;
   border-radius: 12px;
}

.experience-section {
   padding: 80px 0;
   background: #1e293b;
 color    :   white;
  text-align: center;
}

.experience-section h2 {
      font-size: 2.5rem;
	margin-bottom: 3rem;
}

.stats-grid {
   display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; 
	
}

.stat-item {
   text-align  : center;
}

.stat-number {
       font-size: 3.5rem;
   font-weight: bold;
    color: #6366f1;
   margin-bottom:       0.5rem;
}

.stat-label {
    color: #cbd5e1; 
	    font-size: 1.1rem;
}

.learning-approach {
   background: #f1f5f9;
  padding: 80px 0;
}

.learning-grid {
    display: grid;
  grid-template-columns:        1fr 1fr;
    gap: 4rem;
  align-items   :     center;
}

.learning-text h2 {
    font-size :2.5rem;
    color: #1e293b;
  margin-bottom: 1.5rem;
}

.learning-text p {
          color: #64748b;
   font-size:1.1rem;
   margin-bottom: 1.5rem;
	 line-height: 1.7;
}

.approach-highlights h3 {
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.approach-highlights ul {
   list-style: none;
  padding    :    0;
}

.approach-highlights li {
    color :    #475569;
                    padding: 0.5rem 0;
	position: relative;
	 padding-left: 2rem;
}

.approach-highlights li::before {
  content: '●';
	position     :     absolute;
  left    :      0;
  color: #6366f1;
}

.transformation-stories {
     padding: 80px 0;
    background: white;

}

.transformation-stories h2 {
  text-align     :       center;
   font-size: 2.5rem;
   color: #1e293b;
    margin-bottom   : 3rem;
}

.stories-content {
    display: grid;
  grid-template-columns   :        1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.story-details p {
   color: #64748b;
       font-size: 1.1rem;
    margin-bottom: 1.5rem;
     line-height: 1.7;
}

.transformation-quote {


     margin-top    : 2rem;
  padding     :  2rem;
    background: #f8fafc;
         border-left: 4px solid #6366f1;
  border-radius: 8px;
	}

.transformation-quote blockquote {
  color: #1e293b;
  font-style: italic;
    font-size: 1.2rem;
    margin-bottom     :    1rem;
	line-height: 1.6;
}

.transformation-quote cite {
                    color: #6366f1;
    font-weight   :  600;
}

.resilience-focus {
    padding     :80px 0;
      background :  #f8fafc;


}

.resilience-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
}


.resilience-text h2 {
    font-size: 2.5rem;
  color :   #1e293b;
  margin-bottom: 1.5rem;
}  

.resilience-text p {
   color: #64748b;
    font-size: 1.1rem;
   margin-bottom   : 1.5rem;
    line-height :   1.7;
}

.resilience-pillars h3 {
    color:     #1e293b;
       margin-bottom: 1rem;
       margin-top:   2rem;
}

.pillars-list  
  {
   display: flex;
      flex-wrap: wrap;
    gap: 1rem;
}

.pillar {

    background: #6366f1;
   color: white;
   padding: 0.5rem 1rem;
  border-radius: 20px;
    font-size: 0.9rem;
                    font-weight: 600;
}

.commitment {
  padding: 80px 0;
  background: white;
   text-align: center;
}

.commitment h2 {
	margin-bottom: 2rem;
	 color: #1e293b;
    font-size: 2.5rem;
}

.commitment-intro {
   font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 700px;
    margin-left: auto;
   margin-right: auto;
}

.commitment-points {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
     margin-top: 3rem;
}

.commitment-item

{
   text-align: left;
    background: #f8fafc;
  padding    :2rem;
   border-radius: 12px;
}

.commitment-item h3 {

	   color:  #6366f1;
  margin-bottom: 1rem;}

.commitment-item p {
    color    :       #64748b;
	 line-height: 1.6;
}

.thankyou-main {
  padding-top: 100px;
	
}

.thankyou-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
   color: white;
}

.thankyou-content {
  display: grid;
				 grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.thankyou-message h1 {
   font-size: 3rem;
   margin-bottom: 1.5rem;
  font-weight: bold;
}

.thankyou-subtitle {
  font-size:   1.2rem;
  opacity: 0.95;
   margin-bottom: 2rem;
   line-height: 1.7;
}

.success-indicator {
	 display: flex;

	 align-items: center;

          gap: 1rem;

  background: rgba(255, 255, 255, 0.1);

   padding: 1rem 1.5rem;

   border-radius  :     8px;

   margin-top     :2rem;
}

.success-icon {
   -webkit-border-radius: 50%;
   border-radius: 50%;
  display: flex;
	height: 40px;
   align-items: center;
    width: 40px;
  font-weight: bold;
        font-size     :  1.5rem;
  color: #10b981;
   background: white;
  justify-content: center;
}

.next-steps {
  padding: 80px 0;
   background: white;
}

.next-steps h2 {
	text-align: center;
    font-size: 2.5rem;
  color:  #1e293b;
  margin-bottom: 3rem;
}

.steps-timeline

{
   max-width: 800px;
   margin: 0 auto;
}

.timeline-step {
  display: flex;
  gap: 2rem;
    margin-bottom: 3rem;
  align-items: flex-start;
}



.step-number 
 {
    width: 50px;
  height:     50px;
	background: #6366f1;
   color: white;
  border-radius: 50%;
       display: flex;
   align-items: center;
    justify-content: center;
  font-size: 1.5rem;
   font-weight: bold;
   flex-shrink  :      0;
	}

.step-content h3
	{
   color     :    #1e293b;
  font-size: 1.4rem;
  margin-bottom     :  0.5rem;
}

.step-content p {
    color: #64748b;
	 line-height: 1.6;
         margin-bottom: 0.5rem; 
	
}

.step-time {
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
}

.preparation-tips {
   	 padding: 80px 0;
    background: #f8fafc;


}

.preparation-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap:      4rem;
  align-items: start;
}

.preparation-text h2 {
   font-size: 2.5rem; 
    color: #1e293b; 
   margin-bottom: 1.5rem;
}

.preparation-text p {
  color: #64748b;
    font-size: 1.1rem;
  margin-bottom: 2rem;
      line-height: 1.7;
	
}

.preparation-list {
   display: grid;
   gap: 1.5rem;
}

.prep-item {
	background :  white;
	padding  :  1.5rem;
 border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prep-item h4 {
   color: #6366f1;
  margin-bottom: 0.5rem;
}

.prep-item p {
   color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.while-you-wait {
  padding   :       80px 0;
  background: white;
}

.while-you-wait h2 {
  text-align: center;
    font-size  :2.5rem;
    color: #1e293b;
   margin-bottom: 3rem;
}

.wait-content {
          align-items: start;
	display: grid;
    gap: 4rem;
  grid-template-columns: 1fr 1fr;


}

.wait-text p {
   color: #64748b;
	   font-size: 1.1rem;
		margin-bottom: 2rem;
	   line-height: 1.7;
}

.reflection-questions {
	display: grid;

	  gap: 2rem;
}

.question-group h3 {
   color: #1e293b;
  margin-bottom: 1rem;
}

.question-group ul {
  list-style: none;
    padding: 0;

}

.question-group li {
   color: #64748b;
               padding: 0.5rem 0;
   position: relative;
   padding-left: 1.5rem;
}

.question-group li::before {
  content: '?';
    position :   absolute;
  left: 0;
    color: #6366f1;
	font-weight     :      bold;
}

.success-stories-preview {
    padding: 80px 0;
   background: #f1f5f9;
}

.success-stories-preview h2 {
   text-align: center;
  font-size: 2.5rem;
   color: #1e293b;
    margin-bottom  :        3rem;
}

.stories-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.story-card {
	background: white;

   border-radius  :    12px;

  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

  transition: transform 0.3s ease;
}

.story-card:hover  {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
}

.story-card .story-image img {
   width: 100%;
      height: 200px;
   object-fit:       cover;
}

.story-card .story-content {
         padding: 2rem;
}

.story-card h3 {
   color: #1e293b;
    margin-bottom:1rem; 

}

.story-card p {
    color: #64748b;
   line-height: 1.6;
}

.stories-cta {
    text-align :center;
	background :      white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stories-cta p {
   color: #64748b;
    font-size: 1.1rem;
  margin: 0;
}

.contact-reminder {
        text-align: center;
    background: white;
   padding: 80px 0;
}

.contact-reminder h2 {
    color :        #1e293b;
   font-size: 2.5rem;
   margin-bottom: 1.5rem;


}

.reminder-content p {
    font-size: 1.1rem;
	color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.contact-details {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	 margin-bottom: 3rem;
    max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-reminder .contact-item		{

	text-align: center;

}

.contact-reminder .contact-item strong {
    display: block;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.back-to-site {
       display: flex;
  justify-content: center;
   gap: 1rem;
    flex-wrap: wrap;
}

.back-button
	{
    background: #6366f1;
	 color: white;
   padding: 1rem 2rem;
    text-decoration :  none;
   border-radius: 8px;
  font-weight     :600;
  transition: background 0.3s ease;
}

.back-button:hover	{
  background: #5146e5;
}



.back-button.secondary {
   background: transparent;
   color:      #6366f1;
    border: 2px solid #6366f1;
}


.back-button.secondary:hover {
    background: #6366f1;
     color :     white;


}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .story-content,
    .methodology-content,
    .learning-grid,
    .stories-content,
    .resilience-content,
    .thankyou-content,
    .preparation-content,
    .wait-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid,
    .commitment-points {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-message h1 {
        font-size: 2.2rem;
    }

    .back-to-site {
        flex-direction: column;
        align-items: center;
    }
}.cookies-section 
 {
   background: #f8fafc;
  padding: 120px 0 80px;
}

.cookies-section h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 2rem;
}

.cookies-content {
    max-width: 800px;
    margin: 0 auto;
  color: #475569;
  line-height:       1.6;
}

.cookies-content h2

{
    font-size :       1.8rem;
    color: #1e293b;
   margin: 2rem 0 1rem;


}

.cookies-list {
   list-style   :   none;
  padding: 0;
}

.cookies-list li {
  padding    :   0.5rem 0;
               position: relative;
   padding-left: 2rem;
}

.cookies-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
	 color: #10b981;
    font-weight    :      bold;
}

.privacy-section {
    padding: 120px 0 80px;
  background: #f8fafc;
}

.privacy-section h1 {


   text-align: center;
    font-size: 2.5rem;
	color: #1e293b;
	margin-bottom    :    2rem;
     }

.privacy-content {
  max-width: 800px;
	margin: 0 auto;
  color: #475569;
   line-height: 1.6;
}

.privacy-content h2 {
    font-size: 1.8rem;

    color: #1e293b;

  margin:        2rem 0 1rem;
}

.privacy-list {
   list-style: none;
	  padding: 0;
}

.privacy-list li {
    padding   :        0.5rem 0;
	position: relative;
   padding-left  :  2rem;
}

.privacy-list li::before {
  content: '✓';
    position: absolute;
 left: 0;
   color: #10b981;
   font-weight: bold;
}