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

/* Hero Section */
.page-blog__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    padding-top: 10px; /* Small top padding */
    overflow: hidden;
    background-color: #08160F;
    padding-bottom: 60px; /* Add padding below content */
}

.page-blog__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: brightness(0.7); /* Slightly dim the image for text contrast, but not changing colors */
    max-height: 500px; /* Limit height for hero image */
}

.page-blog__hero-content {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    z-index: 1;
    margin-top: 40px; /* Add margin to separate from image */
}

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

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

/* General Section Styling */
.page-blog__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-blog__intro-section,
.page-blog__download-guide-section,
.page-blog__features-section,
.page-blog__why-choose-section,
.page-blog__faq-section,
.page-blog__conclusion-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

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

.page-blog__text-block {
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog__highlight {
    color: #57E38D; /* Glow */
    font-weight: 600;
}

/* CTA Buttons */
.page-blog__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-blog__cta-buttons--center {
    margin-left: auto;
    margin-right: auto;
}

.page-blog__btn-primary,
.page-blog__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-blog__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-blog__btn-secondary {
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
}

.page-blog__btn-secondary:hover {
    background-color: #57E38D; /* Glow */
    color: #08160F; /* Background */
    transform: translateY(-2px);
}

/* Download Guide Section */
.page-blog__download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-blog__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
}

.page-blog__step-title {
    font-size: 1.8rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    text-align: center;
}

.page-blog__step-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
}

.page-blog__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog__step-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-blog__step-list li::before {
    content: '✓';
    color: #57E38D; /* Glow */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Features Section */
.page-blog__main-content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin: 40px auto;
    display: block;
    max-width: 1000px;
}

.page-blog__feature-description-list {
    margin-top: 40px;
}

.page-blog__feature-title-small {
    font-size: 1.6rem;
    color: #57E38D; /* Glow */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-blog__feature-description-text {
    font-size: 1rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

/* Why Choose Section */
.page-blog__reason-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog__reason-list li {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    border: 1px solid #2E7A4E; /* Border */
}

.page-blog__reason-title {
    font-size: 1.6rem;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
}

.page-blog__reason-list p {
    color: #F2FFF6; /* Text Main */
    font-size: 1rem;
}

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

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

.page-blog__faq-item summary {
    list-style: none; /* Remove default marker */
}

.page-blog__faq-item summary::-webkit-details-marker {
    display: none; /* Hide for Webkit browsers */
}

.page-blog__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid #2E7A4E; /* Divider */
    transition: background-color 0.3s ease;
}

.page-blog__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-blog__faq-item[open] .page-blog__faq-question {
    background-color: #0A4B2C; /* Deep Green */
    border-bottom: none;
}

.page-blog__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #57E38D; /* Glow */
    margin-left: 15px;
}

.page-blog__faq-item[open] .page-blog__faq-toggle {
    content: '−'; /* Change to minus when open */
}

.page-blog__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #0A4B2C; /* Deep Green */
}

.page-blog__faq-answer p {
    margin-bottom: 10px;
}

.page-blog__faq-link {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
    font-weight: 600;
}

.page-blog__faq-link:hover {
    color: #57E38D; /* Glow */
}

/* Conclusion Section */
.page-blog__conclusion-section {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog__section-title {
        font-size: 2rem;
    }
    .page-blog__download-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-blog__hero-content {
        padding: 30px 15px;
        margin-top: 40px; /* Adjust for smaller screens */
    }
    .page-blog__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog__description {
        font-size: 1rem;
    }
    .page-blog__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-blog__btn-primary,
    .page-blog__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog__intro-section,
    .page-blog__download-guide-section,
    .page-blog__features-section,
    .page-blog__why-choose-section,
    .page-blog__faq-section,
    .page-blog__conclusion-section {
        padding: 40px 0;
    }
    .page-blog__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog__text-block {
        font-size: 0.95rem;
    }
    .page-blog__step-item,
    .page-blog__reason-list li,
    .page-blog__faq-item {
        padding: 20px;
    }
    .page-blog__step-title {
        font-size: 1.5rem;
    }
    .page-blog__feature-title-small {
        font-size: 1.4rem;
    }
    .page-blog__feature-description-text {
        font-size: 0.9rem;
    }
    .page-blog__reason-title {
        font-size: 1.4rem;
    }
    .page-blog__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-blog__faq-answer {
        padding: 10px 20px 15px;
    }
    .page-blog img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog__hero-section,
    .page-blog__intro-section,
    .page-blog__download-guide-section,
    .page-blog__features-section,
    .page-blog__why-choose-section,
    .page-blog__faq-section,
    .page-blog__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-blog__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-blog__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-blog__section-title {
        font-size: 1.5rem;
    }
    .page-blog__btn-primary,
    .page-blog__btn-secondary {
        font-size: 0.95rem;
    }
    .page-blog__hero-content {
        margin-top: 30px;
    }
}

/* Ensure all video containers are responsive */
.page-blog video,
.page-blog__video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.page-blog__video-section,
.page-blog__video-container,
.page-blog__video-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Contrast Fixes (if needed) */
.page-blog__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}