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

/* Smart contrast for overall page content, assuming body background is dark */
.page-blog p,
.page-blog li,
.page-blog h1,
.page-blog h2,
.page-blog h3 {
    color: #F2FFF6; /* Text Main */
}

.page-blog__description {
    color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-blog__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    padding: 10px 20px 60px; /* Small padding-top, more at bottom */
    box-sizing: border-box;
    overflow: hidden; /* For responsive image */
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 100%; /* Ensure responsive */
    border-radius: 8px;
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 15px;
    box-sizing: border-box;
}

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

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

/* General Section Styling */
.page-blog__section {
    padding: 40px 0;
    box-sizing: border-box;
}

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

.page-blog__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-blog__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #13994A, #2AD16F); /* Button gradient for accent */
    border-radius: 2px;
}

.page-blog__sub-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #57E38D; /* Glow */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog__text-block p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
}

.page-blog__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-blog__list li {
    margin-bottom: 8px;
    color: #F2FFF6; /* Text Main */
}

.page-blog__ordered-list {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-blog__ordered-list li {
    margin-bottom: 8px;
    color: #F2FFF6; /* Text Main */
}

/* Images within content */
.page-blog__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Buttons */
.page-blog__btn-primary,
.page-blog__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

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

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

.page-blog__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Green from button gradient */
    border: 2px solid #2AD16F;
}

.page-blog__btn-secondary:hover {
    background: #2AD16F;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog__btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
    margin-top: 30px;
}

/* FAQ Section */
.page-blog__faq-section {
    background-color: #11271B; /* Card BG */
    padding: 60px 0;
}

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

.page-blog__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    background-color: #1E3A2A; /* Divider for a slight contrast */
}

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

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

.page-blog__faq-qtext {
    flex-grow: 1;
}

.page-blog__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 10px;
    color: #57E38D; /* Glow */
}

.page-blog__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #2E7A4E; /* Border */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

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

    .page-blog__sub-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-blog__hero-section {
        padding: 10px 15px 40px; /* Adjust padding for mobile */
    }
    
    .page-blog__hero-content {
        padding: 0 10px;
    }

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

    .page-blog__description {
        font-size: 1rem;
    }

    .page-blog__section {
        padding: 30px 0;
    }

    .page-blog__container {
        padding: 0 15px;
    }

    .page-blog__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-blog__sub-title {
        font-size: 1.3rem;
    }

    .page-blog__text-block p,
    .page-blog__list li,
    .page-blog__ordered-list li {
        font-size: 0.95rem;
    }

    /* Mobile image responsiveness */
    .page-blog img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Mobile button responsiveness */
    .page-blog__btn-primary,
    .page-blog__btn-secondary,
    .page-blog a[class*="button"],
    .page-blog a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 10px; /* Add some space between stacked buttons */
    }
    
    /* Button containers for mobile */
    .page-blog__hero-content, /* Assuming hero content holds a button */
    .page-blog__text-block { /* Assuming text blocks might hold buttons */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

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

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