.page-blog {
    font-family: Arial, sans-serif;
    color: #FFF3E6; /* Text Main */
    background-color: #0D0E12; /* Background */
}

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

.page-blog__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-blog__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.page-blog__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
    margin-top: 40px;
}

.page-blog__hero-title {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFF3E6;
    line-height: 1.6;
}

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

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

.page-blog__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 130, 0, 0.4);
}

.page-blog__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 130, 0, 0.6);
}

.page-blog__btn-secondary {
    background: transparent;
    color: #FF8C1A;
    border: 2px solid #A84F0C; /* Border */
}

.page-blog__btn-secondary:hover {
    background: #FF8C1A;
    color: #ffffff;
    border-color: #FF8C1A;
}

.page-blog__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #FF8C1A;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-blog__introduction-section,
.page-blog__featured-topics-section,
.page-blog__latest-posts-section,
.page-blog__faq-section,
.page-blog__cta-section {
    padding: 60px 0;
}

.page-blog__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    color: #FFF3E6;
}

.page-blog__text-block strong {
    color: #FFA53A;
}

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

.page-blog__topic-card {
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #A84F0C;
}

.page-blog__topic-title {
    font-size: 1.5em;
    color: #FFA53A;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog__topic-description {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF3E6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog__btn-text {
    color: #FF8C1A;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-blog__btn-text:hover {
    color: #FFA53A;
    text-decoration: underline;
}

.page-blog__posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog__post-card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid #A84F0C;
}

.page-blog__post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-blog__post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #A84F0C;
    padding: 15px 20px 0;
}

.page-blog__post-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 15px 20px 10px;
    line-height: 1.4;
}

.page-blog__post-title a {
    color: #FFA53A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog__post-title a:hover {
    color: #FFB04D;
    text-decoration: underline;
}

.page-blog__post-excerpt {
    font-size: 0.95em;
    color: #FFF3E6;
    line-height: 1.6;
    padding: 0 20px 20px;
    flex-grow: 1;
}

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

.page-blog__faq-list {
    margin-top: 30px;
}

.page-blog__faq-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: #FFA53A;
    cursor: pointer;
    user-select: none;
    background-color: #17191F;
    transition: background-color 0.3s ease;
}

.page-blog__faq-question:hover {
    background-color: rgba(255, 140, 26, 0.1);
}

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

.page-blog__faq-question::marker {
    display: none;
}

.page-blog__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FF8C1A;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
    content: '−';
}

.page-blog__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #FFF3E6;
}

.page-blog__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

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

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-blog__hero-title {
        font-size: 2.8em;
    }

    .page-blog__section-title {
        font-size: 2em;
    }

    .page-blog__posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-blog {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-blog__hero-title {
        font-size: 2.2em !important;
        margin-bottom: 15px;
    }

    .page-blog__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-blog__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        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;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog__section-title {
        font-size: 1.8em !important;
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-blog__introduction-section,
    .page-blog__featured-topics-section,
    .page-blog__latest-posts-section,
    .page-blog__faq-section,
    .page-blog__cta-section {
        padding: 40px 0;
    }

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

    .page-blog__topics-grid,
    .page-blog__posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog__topic-card,
    .page-blog__post-card {
        padding: 20px;
    }

    .page-blog__post-image {
        height: 180px;
    }

    .page-blog__post-title {
        font-size: 1.2em;
    }

    .page-blog__faq-question {
        font-size: 1em;
        padding: 15px;
    }

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

    /* Universal image and container responsiveness for mobile */
    .page-blog img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .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;
        overflow: hidden;
    }

    .page-blog__cta-buttons {
        flex-direction: column !important;
        gap: 10px;
    }
}