
        :root {
            --primary-green: #5a8a63;
            --light-green: #8cb58f;
            --beige: #f0ead6;
            --soft-brown: #a67c52;
            --light-brown: #d7c9b5;
            --white: #ffffff;
            --black: #333333;
            --gray: #f5f5f5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            color: var(--black);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--primary-green);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: var(--light-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background-color: var(--beige);
            color: var(--soft-brown);
            border: 2px solid var(--soft-brown);
        }
        
        .btn-secondary:hover {
            background-color: var(--soft-brown);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary-green);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .text-center {
            text-align: center;
        }
        
        .hidden {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Header Styles */
        header {
            background-color: transparent;
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 15px 0;
        }
        
        .header-scrolled {
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-green);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-green);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--black);
        }
        
        /* Hero Section Styles */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/banner.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            position: relative;
        }
        
        .hero-content {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-btns {
            animation: fadeInUp 1.2s ease;
        }
        
        .hero-btn {
            margin: 0 10px;
        }
        
        /* About Section Styles */
        .about {
            background-color: var(--white);
        }
        
        .about-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .about-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid var(--primary-green);
            border-radius: 10px;
            top: 20px;
            left: 20px;
            z-index: -1;
        }
        
        .about-content {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            padding-left: 60px;
        }
        
        .about-title {
            color: var(--primary-green);
            font-size: 2.2rem;
            text-align: left;
        }
        
        .about-title::after {
            left: 0;
            transform: none;
        }
        
        /* Services Section Styles */
        .services {
            background-color: var(--beige);
            position: relative;
            overflow: hidden;
        }
        
        .services::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background-color: rgba(138, 171, 140, 0.2);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            z-index: 0;
        }
        
        .services::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: rgba(138, 171, 140, 0.15);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
            z-index: 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            top: 0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-green);
        }
        
        .service-text {
            margin-bottom: 20px;
            color: var(--black);
        }
        
        .service-link {
            display: inline-block;
            color: var(--soft-brown);
            font-weight: 600;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .service-link::after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.3s ease;
        }
        
        .service-link:hover {
            color: var(--primary-green);
        }
        
        .service-link:hover::after {
            margin-left: 10px;
        }
        
        /* Phytotherapy Section Styles */
        .phytotherapy {
            background-color: var(--white);
        }
        
        .phytotherapy-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .phyto-info {
            text-align: center;
            max-width: 800px;
            margin-bottom: 50px;
        }
        
        .herbs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            width: 100%;
        }
        
        .herb-item {
            background-color: var(--gray);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .herb-item:hover {
            transform: translateY(-5px);
        }
        
        .herb-img {
            height: 180px;
            overflow: hidden;
        }
        
        .herb-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .herb-item:hover .herb-img img {
            transform: scale(1.1);
        }
        
        .herb-content {
            padding: 20px;
        }
        
        .herb-name {
            font-size: 1.2rem;
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        
        .herb-benefits {
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .herb-item .btn {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
        
        /* Cleansing Section Styles */
        .cleansing {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/c1.jpg') no-repeat center center/cover;
            color: var(--white);
        }
        
        .cleansing-title {
            color: var(--white);
        }
        
        .cleansing-title::after {
            background-color: var(--white);
        }
        
        .cleansing-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .cleansing-text {
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        
        .cleansing-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .cleansing-step {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            padding: 30px;
            border-radius: 10px;
            flex: 1;
            min-width: 250px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        
        .cleansing-step:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-green);
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        /* Prevention Section Styles */
        .prevention {
            background-color: var(--beige);
        }
        
        .prevention-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .prevention-content {
            flex: 1;
            min-width: 300px;
            padding-right: 50px;
        }
        
        .prevention-title {
            text-align: left;
        }
        
        .prevention-title::after {
            left: 0;
            transform: none;
        }
        
        .prevention-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .prevention-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .prevention-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-green);
            font-weight: 700;
        }
        
        .prevention-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .prevention-image img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Testimonials Section Styles */
        .testimonials {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: rgba(90, 138, 99, 0.1);
            border-radius: 50%;
            top: -100px;
            left: -100px;
        }
        
        .testimonials::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background-color: rgba(90, 138, 99, 0.1);
            border-radius: 50%;
            bottom: -75px;
            right: -75px;
        }
        
        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial {
            min-width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
        }
        
        .testimonial-content {
            background-color: var(--gray);
            padding: 30px;
            border-radius: 10px;
            position: relative;
            margin-bottom: 30px;
        }
        
        .testimonial-content::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid var(--gray);
            bottom: -15px;
            left: 50px;
        }
        
        .testimonial-quote {
            font-style: italic;
            margin-bottom: 0;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info {
            display: flex;
            flex-direction: column;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--primary-green);
        }
        
        .author-place {
            font-size: 0.9rem;
            color: var(--soft-brown);
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light-brown);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .dot.active {
            background-color: var(--primary-green);
        }
        
        /* FAQ Section Styles */
        .faq {
            background-color: var(--beige);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion {
            margin-bottom: 15px;
        }
        
        .accordion-header {
            background-color: var(--white);
            padding: 15px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .accordion-header:hover {
            background-color: var(--light-green);
            color: var(--white);
        }
        
        .accordion-icon {
            transition: transform 0.3s ease;
        }
        
        .accordion-content {
            background-color: var(--white);
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            border-radius: 0 0 5px 5px;
        }
        
        .accordion.active .accordion-icon {
            transform: rotate(180deg);
        }
        
        .accordion.active .accordion-content {
            max-height: 500px;
            padding: 20px;
        }
        
        /* CTA Section Styles */
        .cta {
            background: linear-gradient(rgba(90, 138, 99, 0.9), rgba(90, 138, 99, 0.9)), url('https://images.unsplash.com/photo-1587049633312-d628ae20a4fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            text-align: center;
            color: var(--white);
        }
        
        .cta-title {
            color: var(--white);
        }
        
        .cta-title::after {
            background-color: var(--white);
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 40px;
        }
        
        .cta-btn {
            background-color: var(--white);
            color: var(--primary-green);
            font-size: 1.1rem;
            padding: 15px 40px;
        }
        
        .cta-btn:hover {
            background-color: var(--beige);
            color: var(--soft-brown);
        }
        
        /* Contact Section Styles */
        .contact {
            background-color: var(--white);
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-title {
            text-align: left;
            font-size: 2rem;
        }
        
        .contact-title::after {
            left: 0;
            transform: none;
        }
        
        .info-item {
            display: flex;
            margin-bottom: 25px;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .info-content {
            display: flex;
            flex-direction: column;
        }
        
        .info-label {
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 5px;
        }
        
        .info-text {
            color: var(--black);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-green);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-brown);
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-green);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }
        
        .form-btn {
            width: 100%;
            padding: 15px;
            font-size: 1rem;
        }
        
        .map-container {
            margin-top: 50px;
            border-radius: 10px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer Styles */
        footer {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            flex: 1;
            min-width: 300px;
        }
        
        .footer-logo-img {
            height: 60px;
            margin-bottom: 20px;
        }
        
        .footer-logo-text {
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            margin-right: 10px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--white);
            color: var(--primary-green);
            transform: translateY(-3px);
        }
        
        .footer-links {
            flex: 1;
            min-width: 200px;
        }

        .footer-links a{
            color: var(--primary-green)!important;
        }
        
        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--white);
            bottom: 0;
            left: 0;
        }
        
        .footer-menu {
            list-style: none;
        }
        
        .footer-menu li {
            margin-bottom: 10px;
        }
        
        .footer-menu a {
            color: var(--white);
            text-decoration: none;
            transition: padding-left 0.3s ease;
            display: block;
        }
        
        .footer-menu a:hover {
            padding-left: 10px;
            color: var(--beige);
        }
        
        .newsletter {
            flex: 1;
            min-width: 300px;
        }
        
        .newsletter-text {
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        
        .newsletter-input:focus {
            outline: none;
        }
        
        .newsletter-btn {
            background-color: var(--soft-brown);
            color: var(--white);
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: var(--beige);
            color: var(--soft-brown);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .about-image::before {
                display: none;
            }
            
            .prevention-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                padding: 80px 30px 30px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 0 0 20px;
            }
            
            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-btns {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-btn {
                margin: 10px 0;
                width: 100%;
                max-width: 200px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cleansing-step {
                min-width: 100%;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 5px;
                margin-bottom: 10px;
            }
            
            .newsletter-btn {
                border-radius: 5px;
                padding: 12px;
            }
        }
        
        @media screen and (max-width: 576px) {
            .container {
                width: 95%;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .about-content, .about-image, 
            .prevention-content, .prevention-image {
                min-width: 100%;
            }
            
            .service-card, .herb-item {
                min-width: 100%;
            }
        }

        .text-wrapper h2, .text-wrapper h3{
            margin-top: 20px;
            margin-bottom: 10px;
        }
    
        .text-wrapper h1{
            text-align: center;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .text-wrapper h2{
            font-size: 1.5rem;
        }