
        /* 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);
        }
        html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

        /* 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;
        }
        .main-header {
    will-change: transform;
    transition: all 0.2s ease;
}

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

        /* Ayurveda Basics Content Styles */
        .container {
          width: 100%;
          max-width: 800px;
          margin: 0 auto;
          padding: 0 20px;
        }

        /* Hero Section */
        .hero-section {
          background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/ayurveda-hero.jpg');
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          color: white;
          text-align: center;
          padding: 150px 0 50px;
          min-height: 50vh;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
        }

        .hero-section h1 {
          font-size: 3.5rem;
          margin-bottom: 20px;
          color: var(--white);
        }

        .subtitle {
          font-size: 1.5rem;
          margin-bottom: 40px;
          font-weight: 300;
          color: var(--white);
        }

        .hero-buttons {
          display: flex;
          justify-content: center;
          gap: 1.5rem;
          margin-bottom: 50px;
        }

        .cta-button {
          display: inline-block;
          background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
          color: var(--white);
          padding: 14px 28px;
          border-radius: 50px;
          font-weight: 600;
          transition: all 0.3s ease;
          border: none;
          cursor: pointer;
          box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
          text-align: center;
        }

        .cta-button.pulse {
          animation: pulse 2s infinite;
        }

        .cta-button.secondary {
          background: transparent;
          border: 2px solid var(--white);
          box-shadow: none;
        }

        .cta-button:hover {
          transform: translateY(-3px);
          box-shadow: 0 8px 20px rgba(245, 166, 35, 0.5);
        }

        .scroll-down {
          display: flex;
          flex-direction: column;
          align-items: center;
          margin-top: auto;
          padding-bottom: 30px;
          animation: bounce 2s infinite;
        }

        .scroll-down i {
          font-size: 24px;
          margin-top: 10px;
        }

        @keyframes bounce {
          0%, 20%, 50%, 80%, 100% {
              transform: translateY(0);
          }
          40% {
              transform: translateY(-20px);
          }
          60% {
              transform: translateY(-10px);
          }
        }

        @keyframes pulse {
          0% {
              transform: scale(1);
              box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
          }
          70% {
              transform: scale(1.05);
              box-shadow: 0 0 0 10px rgba(245, 166, 35, 0);
          }
          100% {
              transform: scale(1);
              box-shadow: 0 0 0 0 rgba(245, 166, 35, 0);
          }
        }

        /* Introduction Section */
        .intro-section {
          padding: 100px 0;
        }

        .intro-content {
          margin-bottom: 40px;
        }

        .intro-content h2 {
          font-size: 2.5rem;
          color: var(--primary-dark);
        }

        .lead {
          font-size: 1.2rem;
          font-weight: 500;
          color: var(--text);
        }

        .signature {
          display: flex;
          align-items: center;
          margin-top: 30px;
        }

        .signature img {
          margin-right: 20px;
        }

        .signature p {
          font-style: italic;
          margin-bottom: 0;
        }

        .signature span {
          font-size: 0.9rem;
          color: var(--dark-gray);
        }

        .intro-image {
          position: relative;
        }

        .main-image {
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          width: 100%;
          height: auto;
        }

        .image-caption {
          position: absolute;
          bottom: -20px;
          right: -20px;
          background-color: white;
          padding: 15px;
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          display: flex;
          align-items: center;
        }

        .image-caption i {
          color: var(--secondary);
          font-size: 24px;
          margin-right: 10px;
        }

        .image-caption p {
          margin-bottom: 0;
          font-size: 0.9rem;
        }

        /* Section Header */
        .section-header {
          text-align: center;
          margin-bottom: 60px;
        }

        .section-header h2 {
          font-size: 2.5rem;
          color: var(--primary-dark);
        }

        .section-description {
          font-size: 1.1rem;
          color: var(--dark-gray);
          max-width: 700px;
          margin: 0 auto;
        }

        /* Dosha Section */
        .dosha-section {
          padding: 100px 0;
          background-color: #f9f9f9;
        }

        .dosha-cards {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          justify-content: center;
          gap: 30px;
          margin-bottom: 60px;
        }

        .dosha-card {
          background-color: white;
          border-radius: 15px;
          padding: 30px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          text-align: center;
        }

        .dosha-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .dosha-icon {
          margin-bottom: 20px;
        }

        .dosha-card h3 {
          font-size: 1.8rem;
          color: var(--primary-dark);
        }

        .elements {
          font-style: italic;
          color: var(--dark-gray);
          margin-bottom: 20px;
        }

        .dosha-image {
          margin: 20px 0;
          border-radius: 15px;
          overflow: hidden;
        }

        .dosha-image img {
          width: 100%;
          height: 150px;
          object-fit: cover;
          transition: all 0.3s ease;
        }

        .dosha-card:hover .dosha-image img {
          transform: scale(1.05);
        }

        .dosha-traits, .dosha-balance {
          text-align: left;
          margin: 20px 0;
        }

        .dosha-traits h4, .dosha-balance h4 {
          font-size: 1.2rem;
          color: var(--primary-dark);
          margin-bottom: 15px;
        }

        .dosha-traits li, .dosha-balance li {
          margin-bottom: 10px;
          display: flex;
          align-items: flex-start;
        }

        .dosha-traits i, .dosha-balance i {
          margin-right: 10px;
          color: var(--secondary);
        }

        .dosha-button {
          display: inline-block;
          padding: 10px 25px;
          background-color: var(--primary);
          color: white;
          border-radius: 50px;
          font-weight: 500;
          transition: all 0.3s ease;
          margin-top: 20px;
        }

        .dosha-button:hover {
          background-color: var(--primary-dark);
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 6px 15px rgba(58, 125, 68, 0.4);
        }

        /* Vata, Pitta, Kapha specific styles */
        .vata {
          border-top: 5px solid #8e8dbe;
        }

        .pitta {
          border-top: 5px solid #e76f51;
        }

        .kapha {
          border-top: 5px solid #6b8f71;
        }

        .dosha-combination {
          text-align: center;
          margin-top: 60px;
        }

        .dosha-combination h3 {
          font-size: 1.8rem;
          color: var(--primary-dark);
          margin-bottom: 20px;
        }

        .dosha-combination p {
          max-width: 700px;
          margin: 0 auto 30px;
        }

        .combination-images {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 20px;
        }

        .combination-images img {
          width: 200px;
          height: 150px;
          object-fit: cover;
          border-radius: 15px;
          transition: all 0.3s ease;
        }

        .combination-images img:hover {
          transform: scale(1.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Principles Section */
        .principles-section {
          padding: 100px 0;
        }

        .principles-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          justify-content: center;
          gap: 30px;
        }

        .principle-card {
          background-color: white;
          border-radius: 15px;
          padding: 30px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
        }

        .principle-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .principle-icon {
          margin-bottom: 20px;
          text-align: center;
        }

        .principle-card h3 {
          font-size: 1.5rem;
          color: var(--primary-dark);
          text-align: center;
          margin-bottom: 15px;
        }

        .principle-details {
          margin: 20px 0;
        }

        .principle-details h4 {
          font-size: 1.1rem;
          color: var(--primary-dark);
          margin-bottom: 10px;
        }

        .learn-more {
          display: inline-flex;
          align-items: center;
          color: var(--primary);
          font-weight: 500;
          transition: all 0.3s ease;
        }

        .learn-more i {
          margin-left: 5px;
          transition: all 0.3s ease;
        }

        .learn-more:hover {
          color: var(--secondary);
        }

        .learn-more:hover i {
          transform: translateX(5px);
        }

        /* Seasonal Section */
        .seasonal-section {
          padding: 100px 0;
          background-color: #f9f9f9;
        }

        .tab-buttons {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          margin-bottom: 40px;
          gap: 10px;
        }

        .tab-button {
          padding: 12px 25px;
          background-color: transparent;
          border: 2px solid var(--primary);
          border-radius: 50px;
          color: var(--primary);
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .tab-button:hover {
          background-color: var(--primary);
          color: white;
        }

        .tab-button.active {
          background-color: var(--primary);
          color: white;
        }

        .tab-content {
          display: none;
        }

        .tab-content.active {
          display: block;
        }

        .seasonal-content {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 40px;
          align-items: center;
        }

        .seasonal-image img {
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          width: 100%;
          height: auto;
        }

        .seasonal-info h3 {
          font-size: 1.8rem;
          color: var(--primary-dark);
          margin-bottom: 20px;
        }

        .seasonal-tips h4 {
          font-size: 1.2rem;
          color: var(--primary-dark);
          margin: 20px 0 15px;
        }

        .seasonal-tips li {
          margin-bottom: 10px;
          position: relative;
          padding-left: 25px;
        }

        .seasonal-tips li:before {
          content: '•';
          color: var(--secondary);
          font-size: 1.5rem;
          position: absolute;
          left: 0;
          top: -5px;
        }

        .seasonal-button {
          display: inline-block;
          padding: 12px 25px;
          background-color: var(--secondary);
          color: white;
          border-radius: 50px;
          font-weight: 500;
          margin-top: 20px;
          transition: all 0.3s ease;
        }

        .seasonal-button:hover {
          background-color: var(--secondary-dark);
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 6px 15px rgba(245, 166, 35, 0.4);
        }

        /* Testimonials Section */
        .testimonials-section {
          padding: 100px 0;
          background: linear-gradient(rgba(58, 125, 68, 0.9), rgba(58, 125, 68, 0.9)), url('images/testimonials-bg.jpg');
          background-size: cover;
          background-position: center;
          color: white;
        }

        .testimonials-slider {
          max-width: 800px;
          margin: 0 auto;
        }

        .testimonial {
          display: grid;
          grid-template-columns: 150px 1fr;
          gap: 30px;
          align-items: center;
          background-color: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(10px);
          padding: 30px;
          border-radius: 15px;
        }

        .testimonial-image img {
          width: 150px;
          height: 150px;
          border-radius: 50%;
          object-fit: cover;
          border: 5px solid rgba(255, 255, 255, 0.2);
        }

        .quote-icon {
          font-size: 2rem;
          color: var(--secondary-light);
          margin-bottom: 15px;
        }

        .testimonial-author {
          margin-top: 20px;
        }

        .testimonial-author h4 {
          font-size: 1.2rem;
          margin-bottom: 5px;
        }

        .testimonial-author p {
          font-size: 0.9rem;
          opacity: 0.8;
          margin-bottom: 0;
        }

        .testimonial-rating {
          color: var(--secondary-light);
          margin-top: 10px;
        }

        /* Resources Section */
        .resources-section {
          padding: 100px 0;
        }

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

        .resource-card {
          background-color: white;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
        }

        .resource-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .resource-image img {
          width: 100%;
          height: 200px;
          object-fit: cover;
        }

        .resource-info {
          padding: 20px;
        }

        .resource-info h3 {
          font-size: 1.3rem;
          margin-bottom: 10px;
        }

        .author {
          font-size: 0.9rem;
          color: var(--dark-gray);
          margin-bottom: 15px;
        }

        .description {
          font-size: 0.95rem;
          margin-bottom: 20px;
        }

        .resource-button {
          display: inline-flex;
          align-items: center;
          color: var(--primary);
          font-weight: 500;
          transition: all 0.3s ease;
        }

        .resource-button i {
          margin-left: 5px;
          font-size: 0.8rem;
          transition: all 0.3s ease;
        }

        .resource-button:hover {
          color: var(--secondary);
        }

        .resource-button:hover i {
          transform: translateX(5px);
        }

        /* Newsletter Section */
        .newsletter-section {
          padding: 100px 0;
          background-color: #f1f8e9;
        }

        .newsletter-box {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 40px;
          align-items: center;
          background-color: white;
          border-radius: 15px;
          padding: 50px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .newsletter-content h3 {
          font-size: 1.8rem;
          color: var(--primary-dark);
          margin-bottom: 20px;
        }

        .newsletter-form {
          display: flex;
          margin-top: 30px;
        }

        .newsletter-form input {
          flex: 1;
          padding: 15px;
          border: 2px solid #ddd;
          border-radius: 50px 0 0 50px;
          font-size: 1rem;
          outline: none;
          transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
          border-color: var(--primary);
        }

        .newsletter-form button {
          padding: 15px 30px;
          background-color: var(--primary);
          color: white;
          border: none;
          border-radius: 0 50px 50px 0;
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s ease;
        }

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

        .privacy {
          font-size: 0.8rem;
          color: var(--dark-gray);
          margin-top: 15px;
        }

        .newsletter-image img {
          border-radius: 15px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          width: 100%;
          height: auto;
        }

        /* Footer Styles */
        .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-light);
          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);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
          .hero-section h1 {
              font-size: 2.8rem;
          }
          .subtitle {
              font-size: 1.2rem;
          }
          .seasonal-content {
              grid-template-columns: 1fr;
          }
          .newsletter-box {
              grid-template-columns: 1fr;
          }
          .newsletter-image {
              order: -1;
          }
        }

        @media (max-width: 768px) {
          .hero-section {
              padding: 150px 0 80px;
          }
          .hero-section h1 {
              font-size: 2.2rem;
          }
          .intro-content, .intro-image {
              width: 100%;
          }
          .testimonial {
              grid-template-columns: 1fr;
              text-align: center;
          }
          .testimonial-image {
              margin: 0 auto 20px;
          }
          .quote-icon {
              margin: 0 auto 15px;
          }
          .hero-buttons {
              display: flex;
              flex-direction: column;
              align-items: center;
          }
          .cta-button {
              width: 100%;
              max-width: 300px;
              margin: 10px 0;
          }
        }

        @media (max-width: 576px) {
          .tab-buttons {
              flex-direction: column;
          }
          .tab-button {
              width: 100%;
          }
          .footer-bottom {
              flex-direction: column;
          }
          .footer-links {
              flex-direction: column;
              gap: 0.5rem;
          }
        }