.page-blog {
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.page-blog__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: 50px; /* Push content down to avoid header overlap */
}

.page-blog__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-blog__hero-description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-blog__btn-primary,
.page-blog__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-blog__btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-blog__btn-secondary {
    background-color: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-blog__btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(46, 122, 78, 0.2); /* Slightly lighter border color for hover */
}

.page-blog__introduction-section,
.page-blog__latest-posts-section,
.page-blog__categories-section,
.page-blog__value-proposition-section,
.page-blog__cta-banner-section,
.page-blog__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog__section-subtitle {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
}

.page-blog__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-blog__introduction-section p,
.page-blog__value-proposition-section p {
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    text-align: justify;
}

.page-blog__value-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-blog__value-list li {
    background-color: #11271B; /* Card BG */
    border-left: 5px solid #2AD16F;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #F2FFF6; /* Text Main */
}

.page-blog__value-list li strong {
    color: #F2C14E; /* Gold */
}

.page-blog__mid-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.page-blog__post-card,
.page-blog__category-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog__post-card:hover,
.page-blog__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-blog__post-thumbnail,
.page-blog__category-icon {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog__card-content {
    padding: 20px;
    flex-grow: 1; /* Allow content to grow */
    display: flex;
    flex-direction: column;
}

.page-blog__card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog__card-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog__card-title a:hover {
    color: #2AD16F; /* Button color light */
}

.page-blog__card-meta {
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-blog__card-excerpt {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow excerpt to take available space */
}

.page-blog__read-more-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    align-self: flex-start; /* Align button to start */
    transition: background-color 0.3s ease;
}

.page-blog__read-more-btn:hover {
    background-color: #2E7A4E; /* Border color */
}

.page-blog__view-all-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-blog__category-card {
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog__category-icon {
    height: 120px; /* Adjusted for category icons */
    width: auto;
    max-width: 100%;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.page-blog__category-title {
    font-size: 1.2rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog__category-card p {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95rem;
}

.page-blog__cta-banner-section {
    display: flex;
    align-items: center;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 60px;
}

.page-blog__cta-banner-content {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.page-blog__banner-title {
    font-size: 2rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog__banner-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-blog__banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog__cta-banner-image {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 300px; /* Ensure image is not too small */
}

/* FAQ Section */
.page-blog__faq-list {
    margin-top: 40px;
}

.page-blog__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-blog__faq-item[open] {
    background-color: #0A4B2C; /* Deep Green */
}

.page-blog__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    border-bottom: 1px solid #1E3A2A; /* Divider */
    transition: color 0.3s ease;
}

.page-blog__faq-item[open] .page-blog__faq-question {
    color: #2AD16F; /* Button color light */
}

.page-blog__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Button color light */
}

.page-blog__faq-answer {
    padding: 20px;
    padding-top: 0;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog__faq-answer p {
    margin: 0;
    color: #A7D9B8; /* Text Secondary */
}

/* Override default details marker */
.page-blog__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog__faq-item summary {
    list-style: none;
}


/* Responsive styles */
@media (max-width: 992px) {
    .page-blog__cta-banner-section {
        flex-direction: column;
    }
    .page-blog__cta-banner-content {
        text-align: center;
        padding: 30px;
    }
    .page-blog__banner-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-blog__hero-content {
        padding: 15px;
        margin-top: 30px;
    }
    .page-blog__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-blog__hero-description {
        font-size: 1rem;
    }
    .page-blog__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog__btn-primary,
    .page-blog__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog__introduction-section,
    .page-blog__latest-posts-section,
    .page-blog__categories-section,
    .page-blog__value-proposition-section,
    .page-blog__cta-banner-section,
    .page-blog__faq-section {
        padding: 40px 15px;
    }
    .page-blog__section-title {
        font-size: 2rem;
    }
    .page-blog__section-subtitle {
        font-size: 1rem;
    }
    .page-blog__post-grid,
    .page-blog__category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-blog__post-thumbnail,
    .page-blog__category-icon {
        height: 180px;
    }
    .page-blog__card-title {
        font-size: 1.1rem;
    }
    .page-blog__read-more-btn {
        align-self: stretch;
        text-align: center;
    }
    .page-blog__category-card {
        padding: 15px;
    }
    .page-blog__category-icon {
        height: 100px;
    }
    .page-blog__banner-title {
        font-size: 1.8rem;
    }
    .page-blog__banner-description {
        font-size: 1rem;
    }
    .page-blog__banner-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Mobile image responsiveness */
    .page-blog img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog__section,
    .page-blog__card,
    .page-blog__container,
    .page-blog__post-card,
    .page-blog__category-card,
    .page-blog__cta-banner-section,
    .page-blog__cta-banner-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-blog__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog__video-section { /* If a video section was added */
        padding-top: 10px !important;
    }
}