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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FEFEFE;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8FBF8 0%, #F0F8F0 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(123, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(63, 81, 181, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo {
    filter: drop-shadow(0 4px 8px rgba(123, 179, 66, 0.2));
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2E7D32;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #4A7C59;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(123, 179, 66, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 179, 66, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2E7D32;
    font-weight: 300;
}

/* Introduction Section */
.intro {
    background-color: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    text-align: center;
    margin-bottom: 30px;
}

.intro-text p {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.intro-img,
.sustainability-img,
.about-hero-img,
.story-img,
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.intro-img:hover,
.sustainability-img:hover,
.about-hero-img:hover,
.story-img:hover {
    transform: scale(1.05);
}

.product-img {
    height: 200px;
    border-radius: 0;
}
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    background: linear-gradient(135deg, #E8F5E8, #F0F4F0);
    border: 2px dashed #7CB342;
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7CB342;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #F8FBF8, #F5F9F5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(123, 179, 66, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2E7D32;
}

.feature p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Products Section */
.products {
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(123, 179, 66, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #E8F5E8, #F0F4F0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-size: 1.4rem;
    color: #2E7D32;
    margin: 20px 20px 10px;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0 20px 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3F51B5;
    margin: 0 20px 20px;
}

.product-button {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: linear-gradient(135deg, #3F51B5, #5C6BC0);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 81, 181, 0.3);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #F8FBF8, #F5F9F5);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8D6E63, #A1887F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2E7D32;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Sustainability Section */
.sustainability {
    background-color: white;
}

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

.sustainability-text h2 {
    text-align: center;
    margin-bottom: 30px;
}

.sustainability-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sustainability-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: #7CB342;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Workshops Section */
.workshops {
    background: linear-gradient(135deg, #F8FBF8, #F5F9F5);
    text-align: center;
}

.workshops-intro {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.workshop-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(141, 110, 99, 0.2);
}

.workshop-card h3 {
    font-size: 1.3rem;
    color: #8D6E63;
    margin-bottom: 15px;
}

.workshop-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.workshop-duration {
    background: #8D6E63;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    background: #F8FBF8;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #7CB342;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 500;
    color: #7CB342;
}

/* Contacts Section */
.contacts {
    background: linear-gradient(135deg, #F8FBF8, #F5F9F5);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(123, 179, 66, 0.2);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #2E7D32;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2E7D32;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7CB342;
}

.submit-button {
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 179, 66, 0.3);
}

/* Footer */
.footer {
    background: #2E2E2E;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7CB342;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 30px;
    color: #AAA;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #2E7D32;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #7CB342;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-grid,
    .sustainability-content,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-text h2,
    .sustainability-text h2 {
        text-align: center;
    }
    
    .sustainability-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }

    .intro-text h2,
    .sustainability-text h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .brand-name {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .products-grid,
    .features-grid,
    .steps-grid,
    .workshops-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 30px;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 125, 50, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.cookie-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: white;
    color: #2E7D32;
}

.cookie-accept:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.cookie-reject {
    background: #f44336;
    color: white;
}

.cookie-reject:hover {
    background: #d32f2f;
    transform: translateY(-1px);
}

.cookie-customize {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-customize:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cookie-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: white;
    border-bottom-color: white;
}

/* Cookie Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cookie-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cookie-modal-header {
    background: #2E7D32;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.cookie-modal-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.cookie-modal-close:hover {
    opacity: 0.7;
}

.cookie-modal-body {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2E7D32;
    font-weight: 500;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #7CB342;
}

input:disabled + .cookie-slider {
    background-color: #7CB342;
    opacity: 0.6;
    cursor: not-allowed;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-modal-footer {
    background: #F5F5F5;
    padding: 20px 30px;
    text-align: right;
}

.cookie-save {
    background: linear-gradient(135deg, #7CB342, #8BC34A);
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
}

.cookie-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 179, 66, 0.3);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .cookie-modal-header,
    .cookie-modal-footer {
        padding: 15px 20px;
    }
    
    .cookie-modal-body {
        padding: 20px;
    }
}