.page-blog {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Using custom color: #F2FFF6 */
    background-color: var(--bg-primary); /* Using custom color: #08160F */
}

.page-blog__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small padding-top, body handles --header-offset */
    overflow: hidden;
    background-color: var(--bg-primary);
}

.page-blog__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px; /* Space between image and text */
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-blog__hero-content {
    max-width: 900px;
    width: 100%;
    z-index: 1;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-blog__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive H1 font size */
    font-weight: 700;
    color: var(--text-main); /* Using custom color: #F2FFF6 */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog__description {
    font-size: 1.2em;
    color: var(--text-secondary); /* Using custom color: #A7D9B8 */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-blog__btn-primary,
.page-blog__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-blog__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog__btn-secondary {
    background-color: transparent;
    color: var(--text-main); /* Using custom color: #F2FFF6 */
    border: 2px solid var(--border-color); /* Using custom color: #2E7A4E */
}

.page-blog__btn-secondary:hover {
    background-color: var(--border-color); /* Using custom color: #2E7A4E */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog__section {
    padding: 60px 20px;
    background-color: var(--bg-primary); /* Using custom color: #08160F */
    border-bottom: 1px solid var(--divider); /* Using custom color: #1E3A2A */
}

.page-blog__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px;
}

.page-blog__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    font-weight: 700;
    color: var(--gold); /* Using custom color: #F2C14E */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--glow); /* Using custom color: #57E38D */
    border-radius: 2px;
}

.page-blog__sub-title {
    font-size: clamp(1.4em, 3vw, 2.2em);
    font-weight: 600;
    color: var(--text-main); /* Using custom color: #F2FFF6 */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
}

.page-blog__text-block {
    font-size: 1.1em;
    color: var(--text-secondary); /* Using custom color: #A7D9B8 */
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog__text-block strong {
    color: var(--text-main); /* Using custom color: #F2FFF6 */
}

.page-blog__unordered-list,
.page-blog__ordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary); /* Using custom color: #A7D9B8 */
}

.page-blog__list-item {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: var(--text-secondary); /* Using custom color: #A7D9B8 */
}

.page-blog__list-item strong {
    color: var(--text-main); /* Using custom color: #F2FFF6 */
}

.page-blog__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Enforce min-size for images */
    min-height: 200px;
    object-fit: cover;
}

/* FAQ Section */
.page-blog__faq-section {
    background-color: var(--card-bg); /* Using custom color: #11271B */
    padding: 60px 20px;
    border-top: 1px solid var(--divider);
}

.page-blog__faq-item {
    background-color: var(--bg-primary); /* Using custom color: #08160F */
    border: 1px solid var(--border-color); /* Using custom color: #2E7A4E */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: var(--text-secondary);
}

.page-blog__faq-item summary {
    list-style: none;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15em;
    color: var(--gold); /* Using custom color: #F2C14E */
    transition: background-color 0.3s ease;
}

.page-blog__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog__faq-item summary:hover {
    background-color: var(--deep-green); /* Using custom color: #0A4B2C */
}

.page-blog__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow); /* Using custom color: #57E38D */
}

.page-blog__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: var(--text-secondary); /* Using custom color: #A7D9B8 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog__faq-item[open] .page-blog__faq-answer {
    max-height: 500px;
    padding-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog__hero-section {
        padding: 40px 10px;
        padding-top: 10px !important;
    }

    .page-blog__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-blog__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-blog__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog__btn-primary,
    .page-blog__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
    }

    .page-blog__section {
        padding: 40px 10px;
    }

    .page-blog__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 30px;
    }

    .page-blog__sub-title {
        font-size: clamp(1.2em, 5vw, 1.8em);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog__text-block,
    .page-blog__list-item {
        font-size: 0.95em;
    }

    /* Image responsive */
    .page-blog img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
        object-fit: cover;
    }

    /* All containers that might hold images or content */
    .page-blog__section,
    .page-blog__card,
    .page-blog__container,
    .page-blog__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-blog__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-blog__faq-answer {
        padding: 0 20px 15px;
    }
}

/* Custom Colors */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --bg-primary: #08160F;
    --card-bg: #11271B;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow: #57E38D;
    --gold: #F2C14E;
    --divider: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Ensure contrast for text on card/section backgrounds */
.page-blog__section {
    color: var(--text-secondary);
}
.page-blog__faq-item {
    color: var(--text-secondary);
}
.page-blog__faq-item summary {
    color: var(--gold);
}

/* Contrast fix for elements not explicitly styled */
.page-blog p, .page-blog li {
    color: var(--text-secondary);
}
.page-blog h1, .page-blog h2, .page-blog h3, .page-blog h4, .page-blog h5, .page-blog h6 {
    color: var(--text-main);
}
/* Specific overrides for section titles to use gold */
.page-blog__section-title {
    color: var(--gold);
}