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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.banner-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(45, 80, 22, 0.85);
    padding: 80px 60px;
    text-align: center;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 20px;
}

.banner h1 {
    font-size: 3.8em;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    letter-spacing: 1px;
}

.banner h3 {
    font-size: 2em;
    color: #d4edda;
    margin-bottom: 35px;
    font-weight: 300;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #6ec76e;
    color: #fff;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #5cb85c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

.intro-image,
.section-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.intro {
    background-color: #f9fff9;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    border-left: 6px solid #5cb85c;
}

.intro p {
    font-size: 1.15em;
    line-height: 2;
    color: #444;
    text-align: justify;
}

.content-section {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #5cb85c;
}

.content-section h2 {
    font-size: 2.3em;
    color: #2d5016;
    margin-bottom: 25px;
    border-bottom: 4px solid #6ec76e;
    padding-bottom: 15px;
    font-weight: bold;
}

.content-section p {
    font-size: 1.08em;
    line-height: 2;
    color: #444;
    text-align: justify;
    margin-top: 15px;
}

.cta-section {
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #fff;
    color: #2d5016;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-secondary:hover {
    background-color: #6ec76e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.eeat-notes {
    background: linear-gradient(to right, #f0f8f0, #e8f5e8);
    padding: 40px;
    border-radius: 10px;
    border-left: 8px solid #5cb85c;
    margin: 40px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.eeat-notes h3 {
    font-size: 1.8em;
    color: #2d5016;
    margin-bottom: 25px;
    font-weight: bold;
}

.eeat-notes ul {
    list-style-position: outside;
    margin-left: 20px;
    color: #444;
}

.eeat-notes li {
    margin-bottom: 18px;
    font-size: 1.05em;
    line-height: 1.8;
    padding-left: 10px;
}

.eeat-notes strong {
    color: #2d5016;
    font-weight: bold;
    font-size: 1.1em;
}

#partner-link {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfc8 100%);
    padding: 50px 40px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px dashed #5cb85c;
}

#partner-link h2 {
    font-size: 2.5em;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#partner-link p {
    font-size: 1.2em;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.partner-link-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #6ec76e;
    color: #fff;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 15px 0;
}

.partner-link-button:hover {
    background-color: #5cb85c;
    color: #fff;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hashtags {
    font-size: 1.1em;
    color: #5cb85c;
    font-style: italic;
    margin-top: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2d5016 0%, #3d6b1f 100%);
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #fff;
    font-size: 1.1em;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cookie-btn.accept {
    background-color: #6ec76e;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #5cb85c;
    transform: scale(1.05);
}

.cookie-btn.decline {
    background-color: #fff;
    color: #2d5016;
}

.cookie-btn.decline:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

footer {
    background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
    color: #fff;
    text-align: center;
    padding: 30px;
    margin-top: 0;
    font-size: 1.1em;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .banner {
        height: 450px;
    }

    .banner h1 {
        font-size: 2.2em;
    }

    .banner h3 {
        font-size: 1.4em;
    }

    .banner-overlay {
        padding: 40px 25px;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 15px 35px;
    }

    .content-section h2 {
        font-size: 1.8em;
    }

    .container {
        padding: 20px 15px;
    }

    .intro-image,
    .section-image {
        max-height: 280px;
    }

    .intro,
    .content-section,
    .eeat-notes {
        padding: 25px;
    }

    .cta-section {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 1.8em;
    }

    .banner h3 {
        font-size: 1.1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .content-section h2 {
        font-size: 1.5em;
    }
}