* {
  margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #333;
    background-color: #fafafa;
	
}

.navigation-wrapper {
  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;
  border-bottom: 1px solid #e0e0e0;
}

.navigation-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.98);
  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: 1rem 2rem;
}

.company-logo {
    height:45px;
   width: auto;
}  

.menu-links {
  display: flex;
    gap: 2rem;
}

.nav-item  
  {
	 text-decoration: none;
  color  :  #333;
    font-weight: 500;
    transition: color 0.3s ease;
   position: relative;
}

.nav-item:hover {
   color  :#6366f1; 

}

.nav-item::after {
  content: '';
  position :    absolute;
  width     :0;
	 height: 2px;
    bottom: -5px;
       left: 0;
	 background-color: #6366f1;
   transition    :   width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
    cursor: pointer;
    gap: 4px;
}



.burger-line {

  width :  25px;
      height: 3px;
   background-color: #333;
    transition: all 0.3s ease;


}

.menu-open .burger-line:nth-child(1)  
  {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-open .burger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-banner {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
		min-height: 90vh;
  display: flex;
   align-items: center;

}

.hero-content-wrapper {
          max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap  :  4rem;
   align-items: center;
}

.hero-text-area h1 {
  font-size: 3.5rem;
	 font-weight: 700;
  line-height: 1.2;
    margin-bottom     :  1.5rem;
}

.hero-description 
 {
   font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity    :       0.9;
}

.hero-action-buttons {
	    display: flex;
   gap: 1rem;
   flex-wrap: wrap;
	}

.primary-cta-btn, .secondary-outline-btn {
	padding: 0.75rem 2rem;
   text-decoration: none;
   border-radius: 8px;
               font-weight:  600;
    transition: all 0.3s ease;
   display :    inline-block;
}

.primary-cta-btn {
  background: #ff6b6b;
  color: white;
       border: 2px solid #ff6b6b;
	
}

.primary-cta-btn:hover {


  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.secondary-outline-btn {
  background: transparent;
   color: white;
    border: 2px solid white;
}

.secondary-outline-btn:hover {
  background: white;
   color: #667eea;
}

.hero-main-image {
    width: 100%;
   height: 400px;
   object-fit: cover;
   border-radius    :   15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview		{
  padding: 80px 2rem;
    background: #f8fafc;
}

.section-container {
   max-width: 1200px;
  margin: 0 auto;
}

.section-heading
{
  text-align: center;
         font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #1e293b;
  font-weight: 700;
} 

.services-grid{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card 
 {
  background: white;
  padding: 2rem;
		 border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
    margin-bottom: 1rem;
  color: #6366f1;
}

.methodology-section {
  padding: 80px 2rem;
   background: white;
}

.content-layout {
	  max-width: 1200px;
    margin: 0 auto;
 display: grid;
    grid-template-columns  :        1fr 1fr;
   gap: 4rem;
          align-items: center;

}

.method-image	{
    width: 100%;
  height: 350px;
   object-fit: cover;
   border-radius: 12px;
}

.methodology-text h2 {
  font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
   color: #1e293b;
}

.method-benefits {
   list-style: none;

	    margin-top: 1.5rem;
}

.method-benefits li {
     padding: 0.5rem 0;
     position: relative;
	padding-left     :   1.5rem;
}

.method-benefits li::before {
  content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.testimonial-showcase {
   padding: 80px 2rem;
   background: #f1f5f9;
}

.testimonial-container {

	  max-width: 1200px;

	    margin: 0 auto;}

.testimonial-container h2 {

  text-align: center;
 font-size: 2.5rem;
   font-weight: 700;
   margin-bottom: 3rem;
   color: #1e293b;
}

.testimonials-grid {

	                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap    :     2rem;}

.testimonial-item {
  background    :      white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	position: relative;
} 

.testimonial-item p {
   font-style: italic; 
    font-size: 1.1rem; 
   margin-bottom: 1rem; 
    line-height: 1.7;
}

.testimonial-item cite {
     font-weight: 600;
  color: #6366f1;
}

.cta-section {
	 padding: 80px 2rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: center;
	 max-width: 1200px;
   margin    : 0 auto;
}

.cta-content h2 {
   font-size: 2.5rem;
    font-weight: 700;
   margin-bottom: 1rem;


}

.cta-button {
   display: inline-block;
   background: #ff6b6b;
  color  : white;
    padding: 1rem 2rem;
                    text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
    margin-top: 1.5rem;
   transition: all 0.3s ease;
}

.cta-button:hover {
   background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.cta-image {
    width: 100%;

    height: 300px;

  object-fit: cover;

    border-radius   :    12px;
}  

.workshop-info {
	padding: 80px 2rem;
  background: white;
}

.workshop-container		{
   margin: 0 auto;
  max-width: 1200px;
}

.workshop-container h2{
    text-align     :      center;
   font-size: 2.5rem;
   font-weight: 700;
    margin-bottom :   3rem;
    color: #1e293b;
}

.events-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
	  background   :   #f8fafc;
  padding    :       2rem;
   border-radius: 12px;
	 border-left: 4px solid #6366f1;
   transition: transform 0.3s ease;
     }


.event-card:hover    {
  transform: translateY(-3px);
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight    :  600;
   margin-bottom: 1rem;
    color: #1e293b;
}

.event-details		{
   display: flex;
   gap: 1rem;
  margin-top: 1rem;
   flex-wrap: wrap;
}

.event-date, .event-location  
  {
    background  :     #6366f1;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
       font-size: 0.875rem;
    font-weight: 500;
}

.contact-section 
 {
   padding: 80px 2rem;
    background: #f8fafc;
}

.contact-wrapper {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
         gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
   font-weight: 700;
	 margin-bottom: 1.5rem;
  color: #1e293b;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item{
  display: flex;
   margin-bottom :    1rem;
    gap: 0.5rem;

}

.contact-label {

	  font-weight   :       600;
    color     :#6366f1;
  min-width: 80px;
     }

.consultation-form {
    background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {

	display:grid;
    grid-template-columns: 1fr 1fr;
   gap: 1rem;
    margin-bottom: 1rem;

}

.form-group		{
  margin-bottom: 1rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
      padding: 0.75rem;
  border   :    2px solid #e2e8f0;
               border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	  outline  :     none;
    border-color: #6366f1;
}

.form-textarea {
   min-height: 120px;
    resize: vertical;
}

.form-submit-btn {

               width: 100%;
  background: #6366f1;
   color: white;
  padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size    : 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;

}

.form-submit-btn:hover {
  background: #5b5bd6;
}

.site-footer {
 background: #1e293b;
    color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content  
  {
     max-width: 1200px;
  margin: 0 auto;
	 display: grid;
         grid-template-columns: 1fr 2fr;
    gap: 3rem;
     }

.footer-logo {
    height :    40px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-description {
  opacity: 0.8;
	 line-height: 1.6;
}

.footer-links {


    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
	}

.footer-column h4 {
   font-size: 1.1rem;
    font-weight: 600;
  margin-bottom: 1rem;
	color  :        #e2e8f0;
}

.footer-column ul {
   list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
   color: #94a3b8;
	 text-decoration: none;
    transition  :    color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top   :   2rem;
   border-top: 1px solid #334155;
	text-align: center;
   opacity: 0.7;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .menu-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-area h1 {
        font-size: 2.5rem;
    }

    .content-layout, .cta-section, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-action-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-banner {
        padding: 100px 1rem 60px;
    }

    .hero-text-area h1 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .services-grid, .events-layout, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.about-hero-section {
  padding: 120px 2rem 60px;
  background: linear-gradient(145deg, #2d3748 0%, #4a5568 100%);
  color: white;
  text-align: center;
    min-height: 50vh;
  display: flex;
      align-items: center;
  justify-content: center;
}

.about-hero-content h1 {
   font-weight: 700;
   margin-bottom: 1rem;
    font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
   max-width: 600px;
    margin: 0 auto;
}

.our-story-section {
               padding  :       80px 2rem;
  background: white;
}

.story-container


{
	  max-width   :   1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns:      1fr 1fr;
   gap: 4rem;
    align-items: center;


}

.story-content h2 {
  font-weight   :    700;
  margin-bottom: 2rem;
  font-size: 2.5rem;
   color: #1e293b;
}


.story-content p {
   margin-bottom: 1.5rem;
   line-height: 1.7;
	 color: #475569;
}

.story-img    {
   width    :100%;
    height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.methodology-deep-dive {
   padding: 80px 2rem;
   background: #f8fafc;
}

.methodology-container	{
       max-width: 1200px;
   margin  :     0 auto;
}

.methodology-container h2 {
  font-weight: 700;
	font-size     :     2.5rem;
   text-align: center;
	color: #1e293b;
   margin-bottom   :        3rem;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
  border-top: 4px solid #6366f1;
}

.method-card:hover 
 {
  transform: translateY(-5px);
}

.method-card h3 {
  font-size   :   1.3rem;
   font-weight: 600;
  margin-bottom: 1rem;
	color: #6366f1;
}

.team-showcase {
   padding: 80px 2rem;

    background: white;
}

.team-container {
    max-width: 1200px; 
       margin     :        0 auto; 
    text-align: center;
}

.team-container h2 {
  font-size: 2.5rem;
   font-weight: 700;
    margin-bottom: 2rem;
   color: #1e293b;
}

.team-intro {
         max-width: 800px;
   margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: #475569;
   line-height: 1.7;
}

.team-stats {
      display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   margin-top: 3rem;
}



.stat-item {
  text-align: center;
}

.stat-number
{
    font-size: 3rem;
    font-weight: 700;
   color: #6366f1;
       display: block;
  margin-bottom: 0.5rem;
}  

.stat-label {
    color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

.values-section{
  padding: 80px 2rem;
  background: #f1f5f9;
}

.values-container{
    max-width: 1200px;
  margin    : 0 auto;
}

.values-container h2 {
   text-align: center;
	 font-size: 2.5rem;
    font-weight: 700;
   margin-bottom: 3rem;
   color: #1e293b; 

}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
	
}

.value-item {
  background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   text-align: center;
}

.value-item h3 
 {
  font-size   : 1.5rem;
   font-weight: 600;
    margin-bottom: 1rem;
  color: #1e293b;
}

.approach-section {
   padding    :     80px 2rem;
	 background: white;
}

.approach-container {
  max-width: 1200px;
    margin: 0 auto;
         display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;

}

.approach-text h2 {
   font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
	color: #1e293b;
}

.approach-points {
  margin-top: 2rem;
}

.approach-point {
    margin-bottom: 1.5rem;
}

.approach-point h4 {
                    font-size: 1.2rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.approach-image {
    width: 100%;

    height: 350px;

    object-fit: cover;

   border-radius: 12px;
}

.mission-section     {
     padding: 80px 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.mission-content     {
   max-width:  1000px;
   margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
   font-size: 2.5rem;
    font-weight: 700;
  margin-bottom: 2rem;
}

.mission-statement {
  font-size:    1.3rem;
   line-height:   1.7;
  margin-bottom: 3rem;
   opacity: 0.9;
}

.mission-goals {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   margin-top: 3rem;
}

.goal-item {
		 display: flex;
  align-items: flex-start;
    gap: 1rem;
   text-align: left;
}

.goal-number {
  -moz-border-radius     :   50%; 
    background: #6366f1; 
	color :     white; 
    width: 40px; 
  height: 40px; 
  border-radius: 50%; 
   display: flex; 
    align-items: center; 
   justify-content: center; 
    font-weight: 700; 
  flex-shrink: 0;
}

.thankyou-hero {
    padding: 120px 2rem 80px; 
	  background: linear-gradient(135deg, #10b981 0%, #059669 100%); 
	  color: white; 
		min-height: 80vh; 
	  display: flex; 
	    align-items: center;
}

.thankyou-container {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
 align-items: center;

}

.thankyou-content {
	text-align: center;
}

.success-icon {
   margin-bottom: 2rem; 
	
}

.checkmark-circle    {
  width     :      80px;
  height: 80px;
    border-radius   :  50%;
  background: rgba(255,255,255,0.2);
   display:     flex;
  align-items    :    center;
   justify-content: center;
         margin: 0 auto;
   position: relative;
}

.checkmark {
    width     :    25px;
   height: 15px;
   border-left: 3px solid white;
  border-bottom    :3px solid white;
  transform: rotate(-45deg);
}

.thankyou-content h1
{
      font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem; 
	

}

.thankyou-message {


    font-size: 1.2rem;
	line-height: 1.7;
  opacity: 0.9;
   margin-bottom:  3rem;

}

.thankyou-image   {
    width: 100%;
    height: 400px;
  object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.next-steps {
    text-align: left;
   margin-top: 3rem;
}

.next-steps h2 {
   font-size     :        2rem;
	font-weight: 600;
  margin-bottom: 2rem;
    text-align: center;
}

.steps-timeline {
   display: flex;
    flex-direction  :     column;
    gap     :    2rem;
}

.step-item    {
  display: flex;
    align-items: flex-start;
   gap: 1.5rem;
}

.step-number {
  background: rgba(255,255,255,0.2);
    color:  white;
  width: 40px;
    height: 40px;
   border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
	 font-weight: 700;
   flex-shrink   :    0;
}  

.step-content h3 {
    font-size: 1.3rem;
   font-weight: 600;
   margin-bottom: 0.5rem; 
	
}

.while-you-wait {
  padding: 80px 2rem;
    background: #f8fafc;

}

.wait-container{
   max-width: 1200px;
    margin: 0 auto;
}

.wait-container h2 {
   text-align: center;
       font-size: 2.5rem;
   font-weight: 700;
     margin-bottom: 3rem;
	color: #1e293b;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recommendation-card    {
  background    :        white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
 transition:transform 0.3s ease;
}

.recommendation-card:hover {


  transform: translateY(-5px);
}

.recommendation-card h3
{

	   font-size: 1.4rem;
   font-weight: 600;
	margin-bottom: 1rem;
  color: #1e293b;
	}

.recommendation-link {
  display  :     inline-block;
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  margin-top   :1rem;
    border-bottom: 2px solid transparent;
   transition: border-color 0.3s ease;
}

.recommendation-link:hover {
  border-bottom-color: #6366f1; 
	
}

.contact-info-section {
   padding: 80px 2rem;
   background: white;
}

.contact-info-container {
	max-width : 800px;
  margin     :        0 auto;
   text-align: center;
}

.contact-info-container h2  
  {
	 font-size :  2.5rem;
  font-weight: 700;
   margin-bottom: 1.5rem;
        color   :   #1e293b;
}


.contact-details-thankyou {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
	margin-top: 3rem;
}

.contact-detail-item		{
  text-align: center;
}

.contact-detail-item h3 {
  font-size: 1.3rem;
   color: #6366f1;
  font-weight: 600;
  margin-bottom: 1rem;
}

.availability {
    display: block;
  font-size: 0.9rem;
   color: #64748b;
    margin-top: 0.5rem;
}

.testimonial-preview     {
    padding :      80px 2rem;
  background: #f1f5f9;
} 

.testimonial-preview-container {
	max-width: 1000px;
    margin: 0 auto;
	 text-align: center;
}

.testimonial-preview-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
    margin-bottom  :3rem;
   color: #1e293b;
}

.preview-testimonial {
  background: white;
  padding: 2rem;
  border-radius: 12px;
    margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.preview-testimonial blockquote{
  font-size: 1.1rem;
   font-style: italic;
   line-height: 1.7;
    margin-bottom: 1rem;
                    color: #475569;
}

.preview-testimonial cite {

	    font-weight: 600;
   color: #6366f1;}

.return-home-section {
   padding: 80px 2rem;
  background: white;
}

.return-home-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.return-home-container h2 {
   font-size  :  2.5rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
   color  : #1e293b;
	
}

.return-actions {
  display   :flex; 
	    gap: 1rem; 
	    justify-content: center; 
	    margin-top: 2rem; 
					 flex-wrap: wrap;
}

.return-home-btn, .learn-more-btn {
   padding: 0.75rem 2rem;
                    text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.return-home-btn {
    background: #6366f1;

	        color :       white;

	   border: 2px solid #6366f1;
}

.return-home-btn:hover		{
  background: #5b5bd6;
  transform: translateY(-2px);
}

.learn-more-btn {

    background: transparent;
     color: #6366f1;
       border: 2px solid #6366f1;

}

.learn-more-btn:hover {
	background: #6366f1;
      color  :  white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-container, .approach-container, .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-goals {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        gap: 1.5rem;
    }
    
    .contact-details-thankyou {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid, .values-grid, .recommendations-grid {
        grid-template-columns: 1fr;
    }
}.policySection {


    padding: 80px 2rem;
    background: #f8f9fa;

}

.policyContainer {
    text-align: left;
   margin: 0 auto;
                    max-width: 800px;}

.policyContainer h2 {
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
	font-weight: 700;
}

.policyContainer p {
   color: #7f8c8d;
   margin-bottom: 1.5rem;
    line-height: 1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}