:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color-page: #08160F; /* Specific page background, body bg comes from shared */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --dark-text: #333333;
    --light-text: #ffffff;
}

.page-blog-how-to-identify-f188-official-link {
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background-color-page);
    font-family: Arial, sans-serif;
}

.page-blog-how-to-identify-f188-official-link__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-blog-how-to-identify-f188-official-link__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    position: relative;
}

.page-blog-how-to-identify-f188-official-link__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-how-to-identify-f188-official-link__hero-content {
    position: relative; /* Not absolute, to flow below image */
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
    z-index: 2;
}

.page-blog-how-to-identify-f188-official-link__hero-title {
    color: var(--text-main);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    /* Using clamp for responsive font size, but not overly large fixed values */
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-how-to-identify-f188-official-link__hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-blog-how-to-identify-f188-official-link__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-how-to-identify-f188-official-link__cta-buttons--center {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-blog-how-to-identify-f188-official-link__btn-primary,
.page-blog-how-to-identify-f188-official-link__btn-secondary,
.page-blog-how-to-identify-f188-official-link__card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-blog-how-to-identify-f188-official-link__btn-primary {
    background: var(--button-gradient);
    color: var(--light-text);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-f188-official-link__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-identify-f188-official-link__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-blog-how-to-identify-f188-official-link__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--dark-text);
    transform: translateY(-2px);
}

.page-blog-how-to-identify-f188-official-link__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
}

.page-blog-how-to-identify-f188-official-link__article {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-identify-f188-official-link__section-title {
    color: var(--text-main);
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 15px;
}

.page-blog-how-to-identify-f188-official-link__sub-section-title {
    color: var(--text-main);
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 20px;
}

.page-blog-how-to-identify-f188-official-link__paragraph {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.page-blog-how-to-identify-f188-official-link__paragraph .highlight {
    color: var(--gold-color);
    font-weight: bold;
}

.page-blog-how-to-identify-f188-official-link__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-how-to-identify-f188-official-link__inline-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-blog-how-to-identify-f188-official-link__inline-link:hover {
    color: var(--gold-color);
}

.page-blog-how-to-identify-f188-official-link__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-identify-f188-official-link__faq-item {
    background-color: var(--deep-green-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-identify-f188-official-link__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-blog-how-to-identify-f188-official-link__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-identify-f188-official-link__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-blog-how-to-identify-f188-official-link__faq-toggle {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-blog-how-to-identify-f188-official-link__faq-item[open] .page-blog-how-to-identify-f188-official-link__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-how-to-identify-f188-official-link__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-blog-how-to-identify-f188-official-link__related-articles {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-blog-how-to-identify-f188-official-link__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-identify-f188-official-link__article-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-blog-how-to-identify-f188-official-link__article-card:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-identify-f188-official-link__card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-how-to-identify-f188-official-link__card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 15px 20px 10px;
}

.page-blog-how-to-identify-f188-official-link__card-title a {
    color: var(--text-main);
    text-decoration: none;
}

.page-blog-how-to-identify-f188-official-link__card-title a:hover {
    color: var(--secondary-color);
}

.page-blog-how-to-identify-f188-official-link__card-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 20px 10px;
}

.page-blog-how-to-identify-f188-official-link__card-excerpt {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 20px 20px;
}

.page-blog-how-to-identify-f188-official-link__card-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-how-to-identify-f188-official-link__card-link:hover {
    text-decoration: underline;
}

.page-blog-how-to-identify-f188-official-link__view-all-button {
    margin-top: 40px;
}

.page-blog-how-to-identify-f188-official-link__cta-banner {
    position: relative;
    width: 100%;
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-identify-f188-official-link__cta-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-how-to-identify-f188-official-link__cta-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Overlay for contrast */
}

.page-blog-how-to-identify-f188-official-link__cta-banner-title {
    color: var(--gold-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-blog-how-to-identify-f188-official-link__cta-banner-description {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

/* --- Responsive Design --- */

/* All images responsive */
.page-blog-how-to-identify-f188-official-link img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Content area images min-size for desktop */
.page-blog-how-to-identify-f188-official-link__content-area img {
    min-width: 200px;
    min-height: 200px;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .page-blog-how-to-identify-f188-official-link {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-identify-f188-official-link__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-how-to-identify-f188-official-link__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-blog-how-to-identify-f188-official-link__hero-description {
        font-size: 1rem;
    }

    .page-blog-how-to-identify-f188-official-link__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
    }

    .page-blog-how-to-identify-f188-official-link__btn-primary,
    .page-blog-how-to-identify-f188-official-link__btn-secondary,
    .page-blog-how-to-identify-f188-official-link a[class*="button"],
    .page-blog-how-to-identify-f188-official-link a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-identify-f188-official-link__content-area,
    .page-blog-how-to-identify-f188-official-link__related-articles {
        padding: 20px 15px;
    }

    .page-blog-how-to-identify-f188-official-link__article {
        padding: 25px 15px;
    }

    .page-blog-how-to-identify-f188-official-link__section-title {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-identify-f188-official-link__sub-section-title {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-blog-how-to-identify-f188-official-link__paragraph {
        font-size: 0.95rem;
    }

    .page-blog-how-to-identify-f188-official-link__image {
        margin: 20px 0;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-how-to-identify-f188-official-link__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-how-to-identify-f188-official-link__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }

    .page-blog-how-to-identify-f188-official-link__article-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-how-to-identify-f188-official-link__card-image {
        height: 180px;
    }

    .page-blog-how-to-identify-f188-official-link__card-title {
        font-size: 1.15rem;
    }

    .page-blog-how-to-identify-f188-official-link__cta-banner-content {
        padding: 15px;
    }

    .page-blog-how-to-identify-f188-official-link__cta-banner-title {
        font-size: 1.8rem;
    }

    .page-blog-how-to-identify-f188-official-link__cta-banner-description {
        font-size: 0.95rem;
    }

    /* Ensure all image containers are responsive */
    .page-blog-how-to-identify-f188-official-link__hero-image-wrapper,
    .page-blog-how-to-identify-f188-official-link__article-card,
    .page-blog-how-to-identify-f188-official-link__cta-banner {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent content overflow */
    }

    /* Content area padding for mobile */
    .page-blog-how-to-identify-f188-official-link__content-area,
    .page-blog-how-to-identify-f188-official-link__related-articles {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}