/* style/index-hello88-core-advantages.css */
.page-index-hello88-core-advantages {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #001F3F; /* Primary dark blue */
}

.page-index-hello88-core-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-hello88-core-advantages__hero-section {
    background: linear-gradient(135deg, #001F3F 0%, #0A3D62 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-hello88-core-advantages__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-index-hello88-core-advantages__hero-title,
.page-index-hello88-core-advantages__hero-description,
.page-index-hello88-core-advantages__btn {
    position: relative;
    z-index: 2;
}

.page-index-hello88-core-advantages__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-hello88-core-advantages__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-index-hello88-core-advantages__section {
    padding: 60px 0;
    background-color: #001F3F;
    color: #E0E0E0;
}

.page-index-hello88-core-advantages__section--dark {
    background-color: #012A4A;
}

.page-index-hello88-core-advantages__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-hello88-core-advantages__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-hello88-core-advantages__text-content {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: justify;
}

.page-index-hello88-core-advantages__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-index-hello88-core-advantages__feature-item {
    background-color: #002D56;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hello88-core-advantages__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-hello88-core-advantages__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.page-index-hello88-core-advantages__feature-item p {
    font-size: 1em;
    color: #B0C4DE;
    text-align: justify;
}

.page-index-hello88-core-advantages__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hello88-core-advantages__content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-index-hello88-core-advantages__content-row--reverse {
    flex-direction: row-reverse;
}

.page-index-hello88-core-advantages__content-text {
    flex: 1;
    min-width: 300px;
}

.page-index-hello88-core-advantages__content-text h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-hello88-core-advantages__content-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-index-hello88-core-advantages__image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hello88-core-advantages__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-index-hello88-core-advantages__list li {
    background-color: #002D56;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hello88-core-advantages__list li h3 {
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-hello88-core-advantages__list li p {
    color: #B0C4DE;
    font-size: 1em;
    text-align: justify;
}

.page-index-hello88-core-advantages__cta-section {
    background: linear-gradient(90deg, #FFD700 0%, #FFA000 100%);
    padding: 80px 0;
    text-align: center;
    color: #001F3F;
}

.page-index-hello88-core-advantages__cta-title {
    font-size: 2.8em;
    color: #001F3F;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-index-hello88-core-advantages__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #333333;
}

.page-index-hello88-core-advantages__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-hello88-core-advantages__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.page-index-hello88-core-advantages__btn--primary {
    background-color: #001F3F;
    color: #FFD700;
    border: 2px solid #001F3F;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-hello88-core-advantages__btn--primary:hover {
    background-color: #0A3D62;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-index-hello88-core-advantages__btn--secondary {
    background-color: transparent;
    color: #001F3F;
    border: 2px solid #001F3F;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-hello88-core-advantages__btn--secondary:hover {
    background-color: #001F3F;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hello88-core-advantages .highlight,
.page-index-hello88-core-advantages .keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-hello88-core-advantages__hero-title {
        font-size: 2.5em;
    }
    .page-index-hello88-core-advantages__section-title {
        font-size: 2em;
    }
    .page-index-hello88-core-advantages__feature-title {
        font-size: 1.4em;
    }
    .page-index-hello88-core-advantages__text-content,
    .page-index-hello88-core-advantages__hero-description {
        font-size: 1em;
    }
    .page-index-hello88-core-advantages__content-row {
        flex-direction: column;
    }
    .page-index-hello88-core-advantages__content-row--reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-index-hello88-core-advantages__hero-section {
        padding: 60px 0;
    }
    .page-index-hello88-core-advantages__hero-title {
        font-size: 2em;
    }
    .page-index-hello88-core-advantages__section-title {
        font-size: 1.8em;
    }
    .page-index-hello88-core-advantages__cta-title {
        font-size: 2.2em;
    }
    .page-index-hello88-core-advantages__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-index-hello88-core-advantages__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-hello88-core-advantages__hero-title {
        font-size: 1.8em;
    }
    .page-index-hello88-core-advantages__section-title {
        font-size: 1.5em;
    }
    .page-index-hello88-core-advantages__cta-title {
        font-size: 1.8em;
    }
    .page-index-hello88-core-advantages__btn {
        width: 100%;
        text-align: center;
    }
    .page-index-hello88-core-advantages__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}