/* Banner Section */
.hero-banner {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 395px;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-banner .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: "Poppins", sans-serif;
}

.hero-banner p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-badge {
    display: inline-block;
    background: #ffc107;
    color: #1b5e20;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-btn {
    display: inline-block;
    background: #ffc107;
    color: #1b5e20;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 8px;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

.hero-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-btn-outline:hover {
    background: white;
    color: #2e7d32;
}

/* Blog Content */
.blog-wrap {
    max-width: 900px;
    margin: -30px auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.blog-card {
    background: white;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-card h2 {
    color: #000000;
    font-size: 24px;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ffc107;
    font-family: "Poppins", sans-serif;
}

.blog-card h2:first-of-type {
    margin-top: 0;
}

.blog-card p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

.blog-card ul {
    margin: 10px 0 15px 20px;
}

.blog-card li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.blog-card li strong {
    color: #2e7d32;
}

.highlight {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: center;
    border-left: 4px solid #ffc107;
}

.btn {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.ingredient-item {
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
}

.ingredient-item strong {
    color: #2e7d32;
    display: block;
}

.disclaimer {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Social Share */
.social-share {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    margin: 0 5px;
    transition: all 0.3s;
}

.share-btn.fb {
    background: #3b5998;
}

.share-btn.tw {
    background: #000;
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 28px;
    }

    .hero-banner p {
        font-size: 14px;
    }

    .blog-card {
        padding: 25px;
    }

    .blog-card h2 {
        font-size: 20px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
        margin: 5px;
    }

    .ingredient-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 527px) {
    .hero-banner {
        background-position: right;
        min-height: 260px;
    }

    .blog-card {
        padding: 18px;
    }

    .blog-card p {
        font-size: 14px !important;
    }

    .blog-card h1 {
        font-size: 1.5rem;
    }

    .ingredient-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-card h2 {
        font-size: 18px;
    }

    .highlight {
        padding: 18px 14px;
    }
}