*{
     margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body
{
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
   overflow-x: hidden;
}

.main-navigation {

	  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 rgba(46, 125, 50, 0.1);

}

.nav-wrapper {
                    max-width: 1200px;
				 margin: 0 auto;
   display:   flex;
    justify-content: space-between;
  align-items: center;
   padding: 1rem 2rem;
}

.brand-logo{
  height: 45px;
  width: auto;
}

.nav-links {
               display: flex;
   list-style: none;
  gap: 2rem;
}

.nav-links a {
    text-decoration: none;
	 color: #2c3e50;
   font-weight: 500;
    transition :       color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
   color: #2e7d32;
}

.nav-links a::after {
  content: '';
   position: absolute;
   width: 0;
  height: 2px;
   bottom: -5px;
  left: 0;
    background-color: #2e7d32;
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	   width: 100%;
}

.menu-toggle {
   display: none;
         flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
   height: 3px;
  background: #2e7d32;
   transition: 0.3s;

}

.menu-toggle.active span:nth-child(1) {

	  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity:     0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
	min-height: 100vh;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
	display: flex;
   align-items: center;
   padding-top: 80px;
}

.hero-content 
 {
    padding: 0 2rem;
    gap: 4rem;
  margin: 0 auto;
    display:       grid;
   max-width: 1200px;
	align-items: center;
  grid-template-columns: 1fr 1fr;
}

.hero-text h1 {
  font-size: 3.5rem;
	font-weight: 700;
    color: #1b5e20;
   margin-bottom: 1.5rem;
  line-height: 1.2;
     }

.hero-subtitle   {
    font-size: 1.3rem;
    color     :    #4a5568;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.hero-buttons {
  display: flex;
   gap: 1.5rem;
  flex-wrap: wrap;
} 

.primary-btn, .secondary-btn  
  {
   padding: 15px 30px;
    text-decoration: none;
   border-radius: 8px;
	font-weight : 600;
	transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn {
    background: #2e7d32;
   color  :    white;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.primary-btn:hover {
  background :       #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.secondary-btn {
               background: transparent;
  color: #2e7d32;
	border: 2px solid #2e7d32;
}

.secondary-btn:hover {
        background: #2e7d32;
  color: white;
     }

.hero-image img {
   width     :      100%;
	 height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-overview {
      padding: 100px 0;
	 background: #fff;
}

.container {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.services-overview h2 {
          text-align: center;
   font-size: 2.8rem;
	color: #1b5e20;
   margin-bottom: 3rem;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
}

.service-card {
   background: white;

    border-radius: 15px;

   padding: 2rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    border: 1px solid #e8f5e8;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.15);
}

.service-card img   {
	width: 100%;
  height    :     220px;
    object-fit: cover;
	border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
   font-size: 1.5rem;
   color: #1b5e20;
   margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;


}  

.cta-section {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%); 
	  padding: 100px 0; 
	  color: white;
}

.cta-content {
	  max-width: 1200px;
      margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
    padding: 0 2rem;


}

.cta-text h2		{
   font-size   :2.5rem;
   margin-bottom    :  1.5rem;
  line-height: 1.3; 

}

.cta-text p {
   font-size: 1.2rem;
  margin-bottom: 2rem;
   opacity: 0.9;
   line-height: 1.7;
}

.cta-button {

   display: inline-block;
       background: white;
    color   :    #2e7d32;
   padding: 18px 35px;
  text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);}

.cta-button:hover {
	  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	}

.cta-visual img {
    width: 100%;
    height: auto;
        border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-preview {
  padding: 100px 0;
   background: #f8fffe;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
   padding: 0 2rem;
	 text-align: center;
}

.about-preview h2 {
    font-size: 2.5rem;
	 color: #1b5e20;
	margin-bottom: 2rem;
}

.about-preview p   {
	font-size: 1.2rem; 
	color: #4a5568; 
   margin-bottom: 1.5rem; 
  line-height: 1.8;
}

.stats-row {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap  :  2rem;
    margin-top   :3rem;
}

.stat {
   display: flex;
   flex-direction: column;
    align-items: center;
  padding: 2rem 1rem;
  background :white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.stat .number
	{
    font-size: 3rem;
    font-weight     :  700;
    color: #2e7d32;
	margin-bottom: 0.5rem;
}

.stat .label {
   color: #4a5568;
  font-weight: 500;
    text-align     :   center;
}

.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-wrapper {
   max-width: 1200px;
  margin: 0 auto;
    display :  grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;

	  color: #1b5e20;

	  margin-bottom: 1.5rem;
	


}

.contact-info p {

    font-size: 1.2rem;
  color: #4a5568;
    margin-bottom: 2.5rem;
  line-height: 1.7;
	}

.contact-item {
	 display: flex;
    flex-direction: column;
    margin-bottom    :      1.5rem;
}

.contact-item strong {

	   color: #2e7d32;
   margin-bottom: 0.5rem;
}

.contact-form {
   background: #f8fffe;
  padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
}

.form-group {
         margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 15px;
    border    :   2px solid #e8f5e8;
   border-radius: 8px;
  font-size  :     1rem;
	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: #2e7d32;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
    width: 100%;
   background: #2e7d32;
  color: white;
   padding: 18px;
   border: none;
   border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
    cursor: pointer;
  transition :       all 0.3s ease;
}

.submit-btn:hover  
  {
   background: #1b5e20;
  transform: translateY(-2px);

}

.site-footer

{
  background: #1b5e20;
    color: white;
  padding: 60px 0 20px;
	
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 2rem;
   padding: 0 2rem; 
	
}

.footer-logo {
   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}



.footer-description  
  {
  color: rgba(255, 255, 255, 0.8);
  line-height   : 1.7;
  margin-bottom   :        1.5rem;
}

.footer-section h3 {


    margin-bottom: 1rem;
   color     :    #4caf50;


}

.footer-section ul {
      list-style: none; 

     }

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
         transition: color 0.3s ease;


}

.footer-section ul li a:hover {
      color:        #4caf50;


}

.footer-bottom	{
   max-width   :       1200px; 
	   margin: 0 auto; 
	   padding: 2rem; 
	  border-top: 1px solid rgba(255, 255, 255, 0.1); 
	  text-align: center; 
	  color: rgba(255, 255, 255, 0.6); 
		margin-top: 2rem; 

}  @media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .services-overview h2 {
        font-size: 2.2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .nav-wrapper,
    .container,
    .about-container {
        padding: 0 1rem;
    }
}.animate-in {

	  animation: fadeInUp 0.8s ease forwards;}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.main-navigation.scrolled  
  {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.about-hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
   padding: 120px 0 80px;
    display: flex;
   align-items: center;
}

.about-hero-content {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns : 1fr 1fr;
                    gap: 4rem;
    align-items: center;
   padding: 0 2rem;


}

.about-hero-content h1 {
    font-size: 3.2rem;
  color: #1b5e20;
   margin-bottom: 1.5rem;
   line-height: 1.2;

}

.about-intro {
		font-size: 1.3rem;
    color: #4a5568;
	 line-height: 1.7; 
}

.about-hero-image img {
  width     : 100%;
   height    :       auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-section {

	   padding: 100px 0;
   background: white;
}

.mission-container {
   max-width: 1200px;
       margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items: center;
   padding: 0 2rem;
}

.mission-text h2 {
  font-size: 2.5rem;
   color: #1b5e20;
  margin-bottom: 2rem;
}

.mission-text p {
  font-size: 1.1rem;
    color: #4a5568;
   line-height: 1.8;
   margin-bottom: 1.5rem;
}

.mission-image img {
	  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);}

.expertise-areas {
    padding: 100px 0;
  background: #f8fffe;
}

.expertise-container {
 max-width: 1200px;
    margin: 0 auto;
       padding: 0 2rem;
}

.expertise-areas h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #1b5e20;
 margin-bottom: 3rem;
}

.expertise-grid {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.expertise-item {
	 background: white;
    padding: 2.5rem 2rem;
    border-radius:  12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}


.expertise-item:hover {
  transform: translateY(-8px);
}


.expertise-item h3 {
	font-size: 1.4rem;
   color: #2e7d32;
  margin-bottom    :  1rem;
}

.expertise-item p {
   color: #4a5568;
  line-height  :   1.7;
}

.approach-methodology {
	padding: 100px 0;
  background: white;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: flex-start;
   padding: 0 2rem;
}

.approach-text h2 {
    font-size: 2.5rem; 
	     color: #1b5e20; 
	   margin-bottom: 1.5rem;
}

.approach-text > p {
   font-size     :   1.1rem;
                    color: #4a5568;
    margin-bottom: 2.5rem;
  line-height   :  1.7;
}

.methodology-steps {
          display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
    display: flex;
     align-items: flex-start;
     gap: 1.5rem;
     padding: 1.5rem;
       background: #f8fffe;
     border-radius: 10px;
}

.step-number
{


        background: #2e7d32;
    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 h4   {
	    color: #1b5e20;
   margin-bottom: 0.5rem;
  font-size: 1.2rem;
	}

.step-content p {
  color: #4a5568; 
  line-height: 1.6;
}

.approach-visual img {
    width: 100%;
               height   : auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	
}

.success-stories {


    padding: 100px 0;
  background: #f8fffe;
}

.stories-container {
	    max-width: 1200px;
			margin: 0 auto;
   padding     :   0 2rem;
	}

.success-stories h2 {
  text-align: center;
   font-size    :2.8rem;
  color: #1b5e20;
   margin-bottom: 1.5rem;
}

.stories-intro {
  text-align: center;
  font-size: 1.2rem;
	 color: #4a5568;
  margin-bottom     :     3rem;
  line-height: 1.7;
}

.stories-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background    :        white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
					position     :      relative;
}

.story-card h3 {
	  font-size: 1.3rem;
      margin-bottom  :      1rem;
     color: #1b5e20;
	}

.story-card p {
	 color: #4a5568;
   line-height: 1.7;
  margin-bottom: 1.5rem;
}

.result-tag {
    background: #2e7d32;
   color: white;
  padding: 0.5rem 1rem;
    border-radius: 20px;
   font-size: 0.9rem;
  font-weight: 600;
}

.values-section {

	    padding     : 100px 0;
   background: white;
	}

.values-content {
    max-width: 1200px;
	margin     :      0 auto;
	display     : grid;
   grid-template-columns: 2fr 1fr;
    gap: 4rem;
  align-items: flex-start;
   padding   :   0 2rem;
}

.values-content h2 {
   font-size: 2.5rem;
   color: #1b5e20;
    margin-bottom: 2rem;
  grid-column     :1 / -1;
    text-align: center;
}

.values-grid {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.value-item
{
         padding: 2rem;
	background     : #f8fffe;
  border-radius: 10px;
    border-left: 4px solid #2e7d32;
}

.value-item h3 {
  color:        #1b5e20;
    margin-bottom: 1rem;
   font-size: 1.3rem;
}

.value-item p {
  line-height: 1.7;
   color: #4a5568;
}

.values-image img  
  {
  width: 100%;
	height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.call-to-action-about {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
	  padding: 100px 0;
	   color: white;
}

.cta-about-content	{
  align-items: center;
    gap: 4rem;
    max-width: 1200px;
   grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  display: grid;
   padding: 0 2rem;
}

.cta-about-content h2 {
    font-size: 2.5rem;
	    margin-bottom :        1.5rem;
	  line-height    :   1.3;

}

.cta-about-content p {
    font-size: 1.2rem;
	   margin-bottom: 2rem;
	   opacity: 0.9;
	    line-height: 1.7;
}

.cta-about-btn {
   display: inline-block;
  background: white;
    color: #2e7d32;
  padding: 18px 35px;
   text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
    transition    : all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.cta-about-btn:hover   {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-about-image img {
   width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

}

.thankyou-hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
          min-height: 100vh;
    display     : flex;
    align-items: center;
  padding-top   :        80px;
}

.thankyou-container {
      align-items: center;
   padding: 0 2rem;
  grid-template-columns: 2fr 1fr;
    margin: 0 auto;
  max-width: 1200px;
   display: grid;
  gap: 4rem;
}

.thankyou-content {
  text-align: center;
}

.success-icon {
    margin: 0 auto 2rem;
   width: 80px;
    height: 80px;
}

.checkmark {
  margin   :     0 auto;
    height: 80px;
   position: relative;
   width: 80px;
}

.checkmark-circle     {
  width: 80px;
  height: 80px;
    border-radius: 50%;
       background: #2e7d32;
   position: relative;
      animation: checkmark-circle 0.6s ease-in-out;
}

.checkmark-stem, .checkmark-kick {
  position: absolute;
    background: white;
  border-radius: 2px;
}

.checkmark-stem {

  width: 3px;
    height: 18px;
  top: 35px;
   left: 42px;
  transform: rotate(45deg);
	animation: checkmark-stem 0.6s ease-in-out 0.1s both;
}

.checkmark-kick {
    width: 3px;
    height: 12px;
    top: 46px;
    left: 32px;
  transform: rotate(-45deg);
  animation: checkmark-kick 0.6s ease-in-out 0.2s both;
}@keyframes checkmark-circle {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmark-stem {
    0% { height: 0; }
    100% { height: 18px; }
}

@keyframes checkmark-kick {
    0% { height: 0; }
    100% { height: 12px; }
}.thankyou-content h1 {
    font-size:       3rem;
    color: #1b5e20;
  margin-bottom: 1.5rem;
}

.thankyou-message {
  color: #4a5568;
  line-height    :   1.7;
  margin-bottom  :3rem;
  font-size  :  1.2rem;
}

.next-steps {
	 margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
   text-align: center;
    color: #1b5e20;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.steps-timeline
{
    gap: 1.5rem;
    flex-direction:     column;
   display: flex; 

}

.timeline-item {
       display: flex;
	 gap: 1.5rem;
   align-items: flex-start;

}


.timeline-number {
    background: #2e7d32;
   color: white;
    width: 35px;
  height: 35px;
    border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
   font-weight: 700;
    flex-shrink:        0;
}

.timeline-content h3  {
	  color: #1b5e20;
   margin-bottom  :        0.5rem;
   font-size: 1.1rem;
     }

.timeline-content p {
  color: #4a5568;
  line-height: 1.6;
}

.contact-reminder {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
   margin: 2rem 0;
    border-left     :  4px solid #2e7d32;
}

.contact-reminder h3 {
    color: #1b5e20;
   margin-bottom: 1rem;
    text-align: center;
}

.contact-reminder p {
 text-align: center;
  color: #4a5568;
  margin-bottom     :        1.5rem;
}

.contact-info-quick {
	    display: flex;
         flex-direction: column;
  gap :     1rem;
	}

.contact-detail {
  align-items:      center;
	justify-content: space-between;
    padding: 0.5rem 0;
    display: flex;
}

.contact-detail strong {
    color: #2e7d32;
}

.action-buttons {
   display: flex;
   gap:  1.5rem;
   justify-content: center;
   margin-top: 2rem;
}

.primary-btn-thanks, .secondary-btn-thanks {
  padding: 15px 30px;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn-thanks {
  background: #2e7d32;
   color :    white;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.primary-btn-thanks:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.secondary-btn-thanks {
   background  :     transparent;
   color: #2e7d32;
    border: 2px solid #2e7d32; 

}

.secondary-btn-thanks:hover {
    background: #2e7d32;
   color: white;
}

.thankyou-visual img 
 {
   width: 100%;
          height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.additional-resources {
  background: white;
		padding: 80px 0;
}

.resources-container {
      margin: 0 auto;
      text-align: center;
    padding: 0 2rem;
  max-width: 1200px;

}

.additional-resources h2 {
    font-size: 2.3rem;
          color: #1b5e20;
  margin-bottom: 1rem;
}

.additional-resources > p {

	    font-size: 1.1rem;
  color: #4a5568;
	margin-bottom: 3rem;
   line-height: 1.7;

}

.resource-cards   {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	    gap: 2rem;
}

.resource-card {
    background: #f8fffe;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-8px);
}

.resource-card img
	{
   border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 100%;
  height   :  200px;
   object-fit: cover;
}

.resource-card h3 {
   color: #1b5e20;
               font-size     :       1.3rem;
    margin-bottom: 1rem;
}

.resource-card p {
  color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.resource-link {

	   color: #2e7d32;
   text-decoration: none;
   font-weight: 600;
  transition: color 0.3s ease;}

.resource-link:hover {
  color: #1b5e20;
}@media (max-width: 768px) {
    .about-hero-content,
    .mission-container,
    .approach-content,
    .values-content,
    .cta-about-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .expertise-grid,
    .stories-grid,
    .resource-cards {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-quick .contact-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .steps-timeline .timeline-item {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
}