.page-blog {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Main text color for dark background */
    background-color: #08160F; /* Overall page background */
    line-height: 1.6;
    font-size: 16px;
}

.page-blog__section {
    padding: 60px 20px;
    margin-bottom: 0; /* Ensure no extra margin between sections */
    box-sizing: border-box;
}

.page-blog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add some padding for smaller screens */
    box-sizing: border-box;
}

/* Hero Section */
.page-blog__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px; /* Adjust as needed */
    background-color: #08160F; /* Ensure background matches page */
}

.page-blog__hero-image-wrapper {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 20px; /* Space between image and text content */
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit hero image height for better balance */
}

.page-blog__hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    max-width: 800px; /* Limit width of text content */
}

.page-blog__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    color: #F2C14E; /* Gold color for main title */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Subtle glow */
}

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

.page-blog__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin: 10px;
}

.page-blog__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog__cta-button--secondary {
    background: transparent;
    border: 2px solid #2AD16F;
    color: #2AD16F;
    box-shadow: none;
}

.page-blog__cta-button--secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #2AD16F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}


/* General Section Styling */
.page-blog__section-title {
    font-size: 2.2em;
    color: #F2C14E; /* Gold color for section titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog__paragraph {
    color: #F2FFF6; /* Main text color */
    margin-bottom: 15px;
    text-align: justify;
}

.page-blog__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-blog__link {
    color: #2AD16F; /* Green link color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-blog__link:hover {
    color: #57E38D; /* Lighter green on hover */
    text-decoration: underline;
}

.page-blog__list {
    list-style: disc inside;
    color: #F2FFF6;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-blog__ordered-list {
    list-style: decimal inside;
    color: #F2FFF6;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-blog__list-item {
    margin-bottom: 10px;
    color: #F2FFF6;
}

/* Specific Section Backgrounds */
.page-blog__dark-section {
    background-color: #11271B; /* Card BG */
}

.page-blog__medium-bg {
    background-color: #0A4B2C; /* Deep Green */
}

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

.page-blog__feature-item {
    background-color: #08160F; /* Background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #2E7A4E; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-blog__feature-description {
    color: #A7D9B8; /* Secondary text */
    font-size: 0.95em;
}

/* Video Section */
.page-blog__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
}

.page-blog__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    cursor: pointer; /* Indicates it's clickable */
}

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

.page-blog__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    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.15em;
    font-weight: 600;
    color: #F2FFF6; /* Main text */
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green for summary */
    transition: background-color 0.3s ease;
    list-style: none; /* For <summary> */
}

.page-blog__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-blog__faq-item[open] .page-blog__faq-question {
    background-color: #13994A; /* Darker green when open */
}

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

.page-blog__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-blog__faq-answer {
    padding: 0 20px 0;
    color: #A7D9B8; /* Secondary text */
    font-size: 0.95em;
    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; /* Adjust as needed for content */
    padding: 20px 20px 20px;
}

/* Final CTA Section */
.page-blog__cta-final {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog__main-title {
        font-size: clamp(2em, 6vw, 3em);
    }
    .page-blog__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-blog__section {
        padding: 40px 15px;
    }

    .page-blog__hero-image {
        max-height: 300px;
    }

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

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

    .page-blog__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 10px 0;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-blog__hero-content .page-blog__cta-button {
        margin: 10px auto;
    }

    .page-blog__cta-final .page-blog__cta-button {
        display: block;
        width: calc(100% - 20px); /* Adjust for padding if any */
        margin: 10px auto;
    }

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

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

    .page-blog__feature-list {
        grid-template-columns: 1fr;
    }

    .page-blog img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Ensure minimum size */
        min-height: 200px !important; /* Ensure minimum size */
    }
    
    .page-blog__section,
    .page-blog__container,
    .page-blog__feature-item,
    .page-blog__video-wrapper,
    .page-blog__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-blog__video-section {
        padding-top: 10px !important; /* Small top padding for video section */
    }

    .page-blog__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .page-blog__section {
        padding: 30px 10px;
    }
    .page-blog__hero-image {
        max-height: 200px;
    }
    .page-blog__main-title {
        font-size: clamp(1.5em, 9vw, 2em);
    }
    .page-blog__section-title {
        font-size: 1.4em;
    }
    .page-blog__cta-button {
        font-size: 0.95em;
        padding: 10px 15px;
    }
}