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

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

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

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

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

.page-blog__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    background: rgba(8, 22, 15, 0.8); /* Background color with opacity */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.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: 1rem;
    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, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: none;
    margin: 0 10px;
}

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

.page-blog__btn-secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
    margin: 0 10px;
}

.page-blog__btn-secondary:hover {
    background: #2AD16F;
    color: #F2FFF6;
}

.page-blog__introduction-section,
.page-blog__why-follow-section,
.page-blog__recent-posts-section,
.page-blog__cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-blog__featured-articles-section,
.page-blog__how-to-find-section,
.page-blog__faq-section {
    padding: 60px 0;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
}

.page-blog__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: 700;
}

.page-blog__text-block {
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.7;
}

.page-blog__text-secondary {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    max-width: 900px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

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

.page-blog__category-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #2E7A4E; /* Border */
    color: #F2FFF6;
}

.page-blog__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-blog__card-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog__card-description {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog__category-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-blog__category-list li {
    margin-bottom: 8px;
}

.page-blog__category-link {
    color: #2AD16F;
    text-decoration: none;
    font-size: 0.9rem;
}

.page-blog__category-link:hover {
    text-decoration: underline;
}

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

.page-blog__feature-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #2E7A4E; /* Border */
}

.page-blog__feature-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 150px;
    object-fit: cover;
}

.page-blog__feature-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-blog__method-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid #2E7A4E; /* Border */
}

.page-blog__method-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-blog__post-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    border: 1px solid #2E7A4E; /* Border */
}

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

.page-blog__post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.page-blog__post-title a {
    color: #F2C14E; /* Gold */
    text-decoration: none;
}

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

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

.page-blog__post-excerpt {
    font-size: 0.95rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-blog__read-more {
    color: #2AD16F;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
}

.page-blog__read-more:hover {
    text-decoration: underline;
}

.page-blog__view-all-wrapper {
    margin-top: 50px;
}

.page-blog__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-blog__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-blog__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    user-select: none;
}

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

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

.page-blog__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
    transform: rotate(45deg);
}

.page-blog__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

.page-blog__cta-section {
    background-color: #08160F; /* Background */
    padding: 80px 0;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog__hero-content {
        padding: 25px;
    }

    .page-blog__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-blog__hero-description {
        font-size: 1rem;
    }

    .page-blog__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }

    .page-blog__article-categories,
    .page-blog__feature-list,
    .page-blog__method-list,
    .page-blog__post-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,
    .page-blog__introduction-section,
    .page-blog__featured-articles-section,
    .page-blog__why-follow-section,
    .page-blog__how-to-find-section,
    .page-blog__recent-posts-section,
    .page-blog__faq-section,
    .page-blog__cta-section {
        padding: 40px 0;
    }

    .page-blog__hero-content {
        padding: 20px;
    }

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

    .page-blog__hero-description {
        font-size: 0.95rem;
    }

    .page-blog__btn-primary,
    .page-blog__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        margin: 10px 0 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-blog__container,
    .page-blog__hero-section,
    .page-blog__introduction-section,
    .page-blog__featured-articles-section,
    .page-blog__why-follow-section,
    .page-blog__how-to-find-section,
    .page-blog__recent-posts-section,
    .page-blog__faq-section,
    .page-blog__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

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

    .page-blog__card-image,
    .page-blog__feature-icon,
    .page-blog__post-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-blog__post-card,
    .page-blog__category-card,
    .page-blog__feature-item,
    .page-blog__method-item {
        padding: 20px;
    }

    .page-blog__post-title {
        font-size: 1.15rem;
    }

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

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

@media (max-width: 480px) {
    .page-blog__hero-content {
        padding: 15px;
    }

    .page-blog__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .page-blog__text-block,
    .page-blog__text-secondary {
        font-size: 0.9rem;
    }

    .page-blog__category-card,
    .page-blog__feature-item,
    .page-blog__method-item,
    .page-blog__post-card {
        padding: 15px;
    }
}