/* Color Scheme */
        :root {
          --primary: #3a7d44;
          --primary-light: #58d68d;
          --primary-dark: #2c5e33;
          --secondary: #f5a623;
          --secondary-light: #f8c471;
          --secondary-dark: #e69500;
          --light: #f8f4e9;
          --light-alt: #fff9f0;
          --dark: #333;
          --dark-alt: #444;
          --text: #555;
          --white: #fff;
          --gray: #eee;
          --dark-gray: #777;
          --overlay: rgba(0,0,0,0.5);
        }

        /* Base Styles */
        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
          font-family: 'Poppins', sans-serif;
          color: var(--text);
          line-height: 1.6;
          background-color: var(--light);
          overflow-x: hidden;
        }

        h1, h2, h3, h4 {
          font-family: 'Playfair Display', serif;
          font-weight: 700;
          color: var(--dark);
        }

        a {
          text-decoration: none;
          color: inherit;
        }

        ul {
          list-style: none;
        }

        img {
          max-width: 100%;
          height: auto;
          display: block;
        }

        .container {
          width: 90%;
          max-width: 800px;
          margin: 0 auto;
          padding: 0 15px;
        }

        /* Header styles removed, now using shared root styles.css */
        
/* Navigation now using master root styles.css */

        /* About Page Specific Styles */
        .about-hero {
          position: relative;
          text-align: center;
          padding: 8rem 0;
          background: url('images/about-bg.png') center/cover;
          color: white;
          margin-bottom: 4rem;
          overflow: hidden;
        }

        .about-hero::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.6);
        }

        .about-hero .container {
          position: relative;
          z-index: 1;
        }

        .about-hero h1 {
          font-size: 3rem;
          margin-bottom: 1rem;
          color: var(--white);
        }

        .about-hero p {
          font-size: 1.2rem;
          max-width: 600px;
          margin: 0 auto;
          opacity: 0.9;
        }

        /* Mission Section */
        .mission-section {
          padding: 4rem 0;
        }

        .mission-section .container {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
          align-items: center;
        }

        .mission-content h2 {
          font-size: 2rem;
          color: var(--primary);
          margin-bottom: 1.5rem;
        }

        .mission-content p {
          margin-bottom: 1.5rem;
          color: var(--text);
          line-height: 1.6;
        }

        .mission-image {
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .mission-image img {
          width: 100%;
          height: auto;
          display: block;
        }

        /* Values Section */
        .values-section {
          padding: 4rem 0;
          background-color: var(--light-alt);
        }

        .values-section h2 {
          text-align: center;
          margin-bottom: 3rem;
          color: var(--primary);
          font-size: 2rem;
        }

        .section-intro {
          text-align: center;
          max-width: 700px;
          margin: 0 auto 3rem;
          color: var(--dark-gray);
        }

        .values-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 2rem;
        }

        .value-card {
          text-align: center;
          padding: 2rem;
          background-color: white;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          transition: all 0.3s;
        }

        .value-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .value-card i {
          font-size: 2.5rem;
          color: var(--primary);
          margin-bottom: 1rem;
        }

        .value-card h3 {
          margin-bottom: 1rem;
          color: var(--text);
        }

        .value-card p {
          color: var(--dark-gray);
        }

        /* Team Section */
        .team-section {
          padding: 4rem 0;
        }

        .team-section h2 {
          text-align: center;
          margin-bottom: 3rem;
          color: var(--primary);
          font-size: 2rem;
        }

        .team-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 2rem;
        }

        .team-member {
          text-align: center;
          padding: 2rem;
          background-color: white;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          transition: all 0.3s;
        }

        .team-member:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .team-member img {
          width: 150px;
          height: 150px;
          border-radius: 50%;
          object-fit: cover;
          margin: 0 auto 1rem;
          border: 5px solid var(--primary-light);
          transition: all 0.3s;
        }

        .team-member h3 {
          margin-bottom: 0.5rem;
          color: var(--text);
        }

        .team-member .position {
          color: var(--primary);
          font-weight: 500;
          margin-bottom: 1rem;
        }

        .team-member .bio {
          color: var(--dark-gray);
          font-size: 0.9rem;
          margin-bottom: 1.5rem;
        }

        .social-links {
          display: flex;
          justify-content: center;
          gap: 1rem;
        }

        .social-links a {
          color: var(--dark-gray);
          transition: color 0.3s;
        }

        .social-links a:hover {
          color: var(--primary);
        }

        /* History Section */
        .history-section {
          padding: 4rem 0;
          background-color: var(--light);
        }

        .history-section h2 {
          text-align: center;
          margin-bottom: 2rem;
          color: var(--primary);
          font-size: 2rem;
        }

        .timeline {
          position: relative;
          max-width: 800px;
          margin: 0 auto;
          padding-left: 50px;
        }

        .timeline::before {
          content: '';
          position: absolute;
          left: 20px;
          top: 0;
          bottom: 0;
          width: 4px;
          background: var(--primary-light);
        }

        .timeline-item {
          position: relative;
          margin-bottom: 2.5rem;
        }

        .timeline-year {
          position: absolute;
          left: -50px;
          top: 0;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: var(--primary);
          color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
        }

        .timeline-content {
          background: white;
          padding: 1.5rem;
          border-radius: 10px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .timeline-content h3 {
          color: var(--primary);
          margin-bottom: 0.5rem;
        }

        /* Testimonials Section */
        .testimonials-section {
          padding: 4rem 0;
          background-color: var(--light-alt);
        }

        .testimonials-section h2 {
          text-align: center;
          margin-bottom: 2rem;
          color: var(--primary);
          font-size: 2rem;
        }

        .testimonials-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 2rem;
        }

        .testimonial-card {
          background: white;
          padding: 1.5rem;
          border-radius: 10px;
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          display: flex;
          gap: 1rem;
        }

        .client-img {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          object-fit: cover;
          border: 3px solid var(--primary-light);
        }

        .testimonial-content {
          flex: 1;
        }

        .client-info h4 {
          color: var(--primary);
          margin-top: 1rem;
        }

        .client-info p {
          color: var(--dark-gray);
          font-size: 0.8rem;
        }

        /* Read More Functionality */
        .read-more-content {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.5s ease;
          margin-bottom: 1rem;
        }

        .read-more-content.expanded {
          max-height: 500px;
        }

        .read-more-btn {
          background: var(--primary-light);
          color: var(--primary);
          border: none;
          padding: 0.5rem 1rem;
          border-radius: 5px;
          cursor: pointer;
          display: block;
          margin: 1rem auto 0;
          transition: all 0.3s;
        }

        .read-more-btn:hover {
          background: var(--primary);
          color: white;
        }

        .read-more-btn::after {
          content: '▼';
          margin-left: 5px;
          font-size: 0.8rem;
        }

        .read-more-btn.expanded::after {
          content: '▲';
        }

        /* Image Caption */
        .image-caption {
          text-align: center;
          font-style: italic;
          color: var(--dark-gray);
          margin-top: 0.5rem;
          font-size: 0.9rem;
        }

        /* Footer */
        .main-footer {
          background: linear-gradient(to right, var(--primary-dark), var(--primary));
          color: var(--white);
          padding: 5rem 5% 2rem;
          position: relative;
        }

        .main-footer::before {
          content: '';
          position: absolute;
          top: -50px;
          left: 0;
          width: 100%;
          height: 100px;
        }

        .footer-content {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 3rem;
          margin-bottom: 3rem;
        }

        .footer-section {
          padding: 0 1rem;
        }

        .footer-section.about .logo {
          margin-bottom: 1.5rem;
          color: var(--white);
        }

        .footer-section.about .logo img {
          filter: brightness(0) invert(1);
        }

        .footer-section.about p {
          margin-bottom: 1.5rem;
          opacity: 0.8;
          line-height: 1.7;
        }

        .social-icons {
          display: flex;
          gap: 1.2rem;
        }

        .social-icons a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background-color: rgba(255, 255, 255, 0.1);
          color: var(--white);
          font-size: 1.1rem;
          transition: all 0.3s ease;
        }

        .social-icons a:hover {
          background-color: var(--secondary);
          transform: translateY(-3px);
        }

        .footer-section h3 {
          color: var(--secondary-light);
          margin-bottom: 1.8rem;
          font-size: 1.3rem;
          position: relative;
          padding-bottom: 0.8rem;
        }

        .footer-section h3::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 50px;
          height: 2px;
          background-color: var(--secondary-light);
        }

        .footer-section.links ul li {
          margin-bottom: 1rem;
        }

        .footer-section.links ul li a {
          display: block;
          padding: 0.5rem 0;
          transition: all 0.3s ease;
          opacity: 0.8;
        }

        .footer-section.links ul li a:hover {
          opacity: 1;
          color: var(--secondary-light);
          padding-left: 0.5rem;
        }

        .footer-section.contact ul li {
          display: flex;
          align-items: center;
          gap: 1rem;
          margin-bottom: 1.2rem;
          opacity: 0.8;
        }

        .footer-section.contact ul li i {
          color: var(--secondary-light);
          font-size: 1.1rem;
        }

        .newsletter-form {
          display: flex;
          margin-top: 1.5rem;
        }

        .newsletter-form input {
          flex: 1;
          padding: 0.8rem 1rem;
          border: none;
          border-radius: 5px 0 0 5px;
          font-size: 0.9rem;
          outline: none;
        }

        .newsletter-form button {
          padding: 0 1.5rem;
          background-color: var(--secondary);
          color: var(--white);
          border: none;
          border-radius: 0 5px 5px 0;
          cursor: pointer;
          font-size: 1.1rem;
          transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
          background-color: var(--secondary-dark);
        }

        .footer-bottom {
          text-align: center;
          padding-top: 2rem;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
          opacity: 0.7;
          font-size: 0.9rem;
          margin-bottom: 1rem;
        }

        .footer-links {
          display: flex;
          justify-content: center;
          gap: 1.5rem;
          margin-top: 1rem;
        }

        .footer-links a {
          color: var(--white);
          opacity: 0.7;
          font-size: 0.9rem;
          transition: all 0.3s ease;
        }

        .footer-links a:hover {
          opacity: 1;
          color: var(--secondary-light);
        }

        /* Animation Classes */
        .animate {
          animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
          .about-hero h1 {
              font-size: 2.5rem;
          }
        }

        @media (max-width: 768px) {
          /* Mobile nav overrides removed to force desktop view */
          .mission-section .container {
              grid-template-columns: 1fr;
          }
          
          .mission-image {
              order: -1;
          }
          
          .about-hero h1 {
              font-size: 2.2rem;
          }

          .footer-bottom {
              flex-direction: column;
              gap: 1rem;
              text-align: center;
          }
        }

        @media (max-width: 480px) {
          .about-hero {
              padding: 6rem 0;
          }

          .about-hero h1 {
              font-size: 1.8rem;
          }

          .about-hero p {
              font-size: 1rem;
          }

          .timeline {
              padding-left: 40px;
          }

          .timeline-year {
              left: -40px;
              width: 30px;
              height: 30px;
              font-size: 0.8rem;
          }

          .testimonial-card {
              flex-direction: column;
              align-items: center;
              text-align: center;
          }
        }/* Realistic Nature Elements */
.nature-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Butterfly with Flapping Wings */
.butterfly {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 50px;
    height: 50px;
    animation: floatButterfly 15s linear infinite, flapWings 0.2s ease-in-out infinite alternate;
}

@keyframes floatButterfly {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100vw, 50vh) rotate(360deg); }
}

@keyframes flapWings {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(0.8); }
}

/* Bird with Wing Movement */
.bird {
    position: absolute;
    top: 30%;
    left: -100px;
    width: 80px;
    height: 40px;
    animation: flyBird 20s linear infinite, flapBirdWings 0.5s ease-in-out infinite;
}

@keyframes flyBird {
    0% { transform: translateX(-100px) translateY(0) scaleX(1); }
    100% { transform: translateX(100vw) translateY(-50px) scaleX(1); }
}

@keyframes flapBirdWings {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Leaf with Wobble Effect */
.leaf {
    position: absolute;
    top: 60%;
    left: 70%;
    width: 40px;
    height: 40px;
    animation: floatLeaf 25s linear infinite, wobble 3s ease-in-out infinite;
}

@keyframes floatLeaf {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50vw, -50vh) rotate(360deg); }
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}
/* Butterfly Wing Morphing */
.left-wing, .right-wing {
    animation: wingMorph 0.3s ease-in-out infinite alternate;
}

@keyframes wingMorph {
    0% { d: path("M100,100 C50,50 0,100 0,150 C0,200 50,150 100,100"); }
    100% { d: path("M100,100 C30,30 0,100 0,170 C0,220 60,170 100,100"); }
}

/* Bird Wing Flap */
.bird-wings .left-wing, .bird-wings .right-wing {
    transform-origin: center;
    animation: birdWingFlap 0.4s ease-in-out infinite alternate;
}

@keyframes birdWingFlap {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(20deg); }
}
.about-hero, .mission-section, .values-section {
    position: relative;
    z-index: 2;
}
.butterfly, .bird, .leaf {
    will-change: transform, opacity;
}