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

:root {
    --primary-green: #00a651;
    --dark-green: #006837;
    --light-bg: #f5f5f0;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.btn-cta {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: var(--dark-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    padding: 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: var(--dark-green);
}

.btn-refuse, .btn-learn {
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 30px;
    border: 2px solid var(--text-dark);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-refuse:hover, .btn-learn:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: var(--light-bg);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

/* Spirit Section */
.spirit-section {
    padding: 80px 0;
    background: var(--white);
}

.spirit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spirit-image img {
    width: 100%;
    border-radius: 8px;
}

.spirit-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.spirit-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.products-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.2rem;
    padding: 1rem 1.5rem 0.5rem;
}

.product-card p {
    padding: 0 1.5rem 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    padding: 0.5rem 1.5rem 1.5rem;
}

/* Commitments Section */
.commitments-section {
    padding: 80px 0;
    background: var(--white);
}

.commitments-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.commitment-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.commitment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
}

.blog-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.detail-item {
    margin-bottom: 1.5rem;
}

.detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-submit {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--dark-green);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-block {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-block p {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-green);
}

.legal-content p, .legal-content ul {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.footer-text {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-weight: 600;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    background: var(--light-bg);
    min-height: 60vh;
}

.thank-you-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.thank-you-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thank-you-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thank-you-image img {
    width: 100%;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .btn-cta {
        display: none;
    }

    .hero-content,
    .spirit-content,
    .contact-content,
    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spirit-content .spirit-image {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .products-grid,
    .commitments-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept, .btn-refuse, .btn-learn {
        width: 100%;
    }
}