body {
    background-color: #f9fafb;
}

.blog-detail-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
}

.blog-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    text-align: left;
}

.breadcrumbs {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs i {
    margin: 0 8px;
    font-size: 0.8rem;
    color: #2e7d32;
}

.blog-hero-content h1 {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.blog-detail-container {
    max-width: 900px;
    margin: -80px auto 60px;
    background: white;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    position: relative;
    z-index: 3;
    border-top: 5px solid #2e7d32;
}

.blog-detail-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 0 0 26px;
}

.blog-detail-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-top: 45px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    border-left: 4px solid #2e7d32;
    padding-left: 15px;
}

.blog-detail-content ul {
    margin: 0 0 24px;
    padding-left: 22px;
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-detail-content li {
    margin: 0 0 10px;
}

.blog-detail-content li p {
    margin: 8px 0 0;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #f7fafc;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.back-to-blog:hover {
    background-color: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

.back-to-blog i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .blog-detail-hero {
        height: 350px;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-detail-container {
        padding: 30px 20px;
        margin-top: -40px;
    }
}
