:root {
    --f68bet-primary: #11A84E;
    --f68bet-secondary: #22C768;
    --f68bet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --f68bet-card-bg: #11271B;
    --f68bet-background: #08160F;
    --f68bet-text-main: #F2FFF6;
    --f68bet-text-secondary: #A7D9B8;
    --f68bet-border: #2E7A4E;
    --f68bet-glow: #57E38D;
    --f68bet-gold: #F2C14E;
    --f68bet-divider: #1E3A2A;
    --f68bet-deep-green: #0A4B2C;
}

.page-blog-f68bet-advantages {
    background-color: var(--f68bet-background);
    color: var(--f68bet-text-main);
    line-height: 1.6;
    font-family: Arial, sans-serif; /* A common, safe font */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Ensure padding-top is handled by body in shared.css,
   only add minimal top padding for the first section if needed */
.page-blog-f68bet-advantages__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--f68bet-card-bg); /* Use a dark background for the hero section */
}

.page-blog-f68bet-advantages__image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-blog-f68bet-advantages__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 approx */
    object-fit: cover;
    object-position: center;
}

.page-blog-f68bet-advantages__hero-content {
    max-width: 900px;
    margin-top: 30px;
    padding: 0 20px;
}

.page-blog-f68bet-advantages__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted for better desktop/mobile balance */
    color: var(--f68bet-gold);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5); /* Subtle glow effect */
}

.page-blog-f68bet-advantages__description {
    font-size: 1.1rem;
    color: var(--f68bet-text-secondary);
    margin-bottom: 30px;
}

.page-blog-f68bet-advantages__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: var(--f68bet-button-gradient);
    color: var(--f68bet-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-f68bet-advantages__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-f68bet-advantages__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--f68bet-divider);
}

.page-blog-f68bet-advantages__section:last-of-type {
    border-bottom: none;
}

.page-blog-f68bet-advantages__content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-f68bet-advantages__heading {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--f68bet-primary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
    position: relative;
}

.page-blog-f68bet-advantages__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--f68bet-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-blog-f68bet-advantages__introduction p {
    font-size: 1.05rem;
    color: var(--f68bet-text-secondary);
    margin-bottom: 15px;
    text-align: justify;
}
.page-blog-f68bet-advantages__introduction p:last-of-type {
    margin-bottom: 0;
}

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

.page-blog-f68bet-advantages__feature-card {
    background-color: var(--f68bet-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--f68bet-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.page-blog-f68bet-advantages__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-f68bet-advantages__feature-image {
    width: 100%;
    max-width: 250px; /* Constrain image size within card */
    height: auto;
    aspect-ratio: 4/3; /* Example aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid var(--f68bet-deep-green);
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.3); /* Subtle glow */
    min-width: 200px; /* Ensure min size */
    min-height: 150px; /* Ensure min size */
}

.page-blog-f68bet-advantages__feature-title {
    font-size: 1.5rem;
    color: var(--f68bet-primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-f68bet-advantages__feature-card p {
    font-size: 1rem;
    color: var(--f68bet-text-secondary);
    text-align: justify;
}

.page-blog-f68bet-advantages__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-f68bet-advantages__list-item {
    background-color: var(--f68bet-card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--f68bet-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-f68bet-advantages__list-item:last-of-type {
    margin-bottom: 0;
}

.page-blog-f68bet-advantages__list-title {
    font-size: 1.4rem;
    color: var(--f68bet-gold);
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
}

.page-blog-f68bet-advantages__list-title::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--f68bet-primary);
}

.page-blog-f68bet-advantages__list-item p {
    font-size: 1rem;
    color: var(--f68bet-text-secondary);
    text-align: justify;
}

.page-blog-f68bet-advantages__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-blog-f68bet-advantages__why-choose p {
    font-size: 1.05rem;
    color: var(--f68bet-text-secondary);
    margin-bottom: 15px;
    text-align: center;
}
.page-blog-f68bet-advantages__why-choose p:last-of-type {
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-blog-f68bet-advantages__hero-content {
        margin-top: 20px;
    }

    .page-blog-f68bet-advantages__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .page-blog-f68bet-advantages__description {
        font-size: 1rem;
    }

    .page-blog-f68bet-advantages__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .page-blog-f68bet-advantages__heading {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .page-blog-f68bet-advantages__feature-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }

    .page-blog-f68bet-advantages__feature-card {
        padding: 25px;
    }

    .page-blog-f68bet-advantages__feature-image {
        max-width: 200px;
    }

    .page-blog-f68bet-advantages__feature-title {
        font-size: 1.3rem;
    }

    .page-blog-f68bet-advantages__feature-card p {
        font-size: 0.95rem;
    }

    .page-blog-f68bet-advantages__list-item {
        padding: 20px;
    }

    .page-blog-f68bet-advantages__list-title {
        font-size: 1.2rem;
        padding-left: 25px;
    }

    .page-blog-f68bet-advantages__list-title::before {
        font-size: 1rem;
    }

    .page-blog-f68bet-advantages__list-item p {
        font-size: 0.95rem;
    }

    /* Ensure content area images are responsive */
    .page-blog-f68bet-advantages__section img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 549px) {
    .page-blog-f68bet-advantages__hero-section {
        padding-bottom: 30px;
    }

    .page-blog-f68bet-advantages__main-title {
        font-size: clamp(1.1rem, 7vw, 1.75rem); /* H1 clamp for mobile */
    }

    .page-blog-f68bet-advantages__section {
        padding: 40px 15px;
    }

    .page-blog-f68bet-advantages__heading {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        margin-bottom: 30px;
    }

    .page-blog-f68bet-advantages__introduction p,
    .page-blog-f68bet-advantages__why-choose p {
        text-align: left; /* Adjust justify for very small screens */
    }

    .page-blog-f68bet-advantages__feature-card {
        padding: 20px;
    }

    .page-blog-f68bet-advantages__feature-title {
        font-size: 1.2rem;
    }

    .page-blog-f68bet-advantages__list-title {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    .page-blog-f68bet-advantages__list-title::before {
        font-size: 0.9rem;
    }

    .page-blog-f68bet-advantages__list-item p {
        font-size: 0.95rem;
    }
}

/* Critical image CSS rules for content area */
.page-blog-f68bet-advantages__section img {
    min-width: 200px; /* Global minimum size for content images */
    min- /* Assuming 4:3 aspect, adjust as needed */
}

@media (max-width: 768px) {
    .page-blog-f68bet-advantages__section img {
        max-width: 100%;
        height: auto;
    }
}