:root {
    --primary-dark: #63335A;
    --primary-medium: #9A7490;
    --primary-light: #7A7183;
    --accent-yellow: #FFD700;
    --nature-green: #4A7C59;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-medium);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .logo {
        font-size: 1.5rem;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-text {
        display: none;
    }
}

@media screen and (max-width: 320px) {
    .logo-img {
        height: 30px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-banner {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFE55C 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--text-dark);
    stroke-width: 2;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-block h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.feature-block p {
    color: var(--text-dark);
    opacity: 0.9;
    font-size: 0.95rem;
}

.banner-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

.welcome-section h1 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--primary-medium);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #E0E0E0;
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-dark);
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
}

.products-section {
    padding: 4rem 0;
}

.page-header {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 100%);
    color: white;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--primary-dark);
    font-size: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #E0E0E0;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.product-description {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.product-details {
    font-size: 0.9rem;
    color: var(--primary-medium);
    font-weight: 500;
}

.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    background-color: #E0E0E0;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-dark);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.process-section {
    margin: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1.5rem;
    background-color: #E0E0E0;
}

.scents-section {
    margin: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.scents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.scent-item {
    text-align: center;
}

.scent-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-color: #E0E0E0;
}

.custom-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--primary-medium);
}

.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--primary-dark);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
}

.form-group textarea {
    resize: vertical;
}

.map-section {
    margin-top: 4rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    display: block;
}

.privacy-section {
    padding: 4rem 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.privacy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.privacy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content ol li {
    margin-bottom: 0.75rem;
}

.privacy-content a {
    color: var(--primary-medium);
    text-decoration: underline;
}

.privacy-content a:hover {
    color: var(--primary-dark);
}

.cookie-table {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cookie-table h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-table h3:first-child {
    margin-top: 0;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-dark);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--primary-medium);
    transform: translateY(-2px);
    color: white;
}

footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}


@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banner-image {
        min-height: 300px;
        order: -1;
    }

    .feature-block {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .welcome-section,
    .features-section,
    .products-section,
    .about-section,
    .contact-section,
    .privacy-section {
        padding: 2rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        min-height: 250px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .products-grid,
    .values-grid,
    .scents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .hero-banner {
        padding: 2rem 0;
    }

    .banner-image {
        min-height: 250px;
    }

    .feature-block h3 {
        font-size: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.benefits-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-dark);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.how-it-works-section {
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.step-number-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background-color: #E0E0E0;
}

.testimonials-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-medium);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.seasonal-section {
    padding: 4rem 0;
}

.seasonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.seasonal-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.seasonal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    background-color: #E0E0E0;
}

.seasonal-features {
    list-style: none;
    margin: 1.5rem 0;
}

.seasonal-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.seasonal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: bold;
}

.care-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.care-tip {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.care-icon {
    width: 56px;
    height: 56px;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.care-icon svg {
    width: 100%;
    height: 100%;
}

.aromatherapy-intro {
    padding: 4rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    background-color: #E0E0E0;
}

.essential-oils-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.oil-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.oil-benefit-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.oil-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.oil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #E0E0E0;
}

.oil-content {
    padding: 1.5rem;
}

.oil-description {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    margin: 1rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-medium);
    font-weight: bold;
    font-size: 1.5rem;
}

.best-for {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--primary-dark);
}

.aromatherapy-uses {
    padding: 4rem 0;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.use-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.use-icon {
    width: 56px;
    height: 56px;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.use-icon svg {
    width: 100%;
    height: 100%;
}

.blending-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.blending-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.blending-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    background-color: #E0E0E0;
}

.blending-steps {
    list-style: none;
    margin: 1.5rem 0;
    counter-reset: step-counter;
}

.blending-steps li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
    counter-increment: step-counter;
}

.blending-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.safety-section {
    padding: 4rem 0;
}

.safety-content {
    max-width: 900px;
    margin: 0 auto;
}

.safety-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.safety-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-dark);
}

.safety-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;

    transition: transform 0.3s ease-in-out;
    display: block !important;
    visibility: visible;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: white;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

.cookie-btn-accept:hover {
    background-color: #FFE55C;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-settings.show .cookie-settings-content {
    transform: scale(1);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cookie-settings-header h2 {
    margin: 0;
    color: var(--primary-dark);
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cookie-settings-close:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.cookie-setting-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-setting-header h3 {
    margin: 0;
    color: var(--primary-dark);
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-medium);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-setting-description {
    color: var(--text-light);
    margin: 0;
}

.cookie-settings-buttons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 1.5rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-settings {
        padding: 1.5rem;
    }

    .cookie-settings-header h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .banner-image {
        min-height: 200px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-block h3 {
        font-size: 1.1rem;
    }

    .feature-block p {
        font-size: 0.9rem;
    }

    .benefits-grid,
    .care-grid,
    .uses-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .seasonal-content,
    .intro-content,
    .blending-content {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-text {
        font-size: 0.9rem;
    }

    .cookie-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

.success-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--primary-dark);
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.success-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn-primary {
        width: 100%;
    }
}

