/* style/online-betting-platform-advantages.css */
.page-online-betting-platform-advantages {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark sections */
    background-color: #003366; /* Main background color */
}

.page-online-betting-platform-advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-online-betting-platform-advantages__hero {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-online-betting-platform-advantages__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-online-betting-platform-advantages__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-online-betting-platform-advantages__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-online-betting-platform-advantages__section {
    padding: 60px 0;
    text-align: center;
    color: #003366; /* Default text color for light sections */
    background-color: #f8f8f8; /* Light background for alternating sections */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-online-betting-platform-advantages__section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-online-betting-platform-advantages__section--dark {
    background-color: #003366;
    color: #ffffff; /* Text color for dark sections */
}

.page-online-betting-platform-advantages__heading {
    font-size: 2.5em;
    margin-bottom: 30px;
}
.page-online-betting-platform-advantages__section--dark .page-online-betting-platform-advantages__heading {
    color: #FFCC00;
}
.page-online-betting-platform-advantages__section:not(.page-online-betting-platform-advantages__section--dark) .page-online-betting-platform-advantages__heading {
    color: #003366;
}

.page-online-betting-platform-advantages__subheading {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}
.page-online-betting-platform-advantages__section--dark .page-online-betting-platform-advantages__subheading {
    color: #FFCC00;
}
.page-online-betting-platform-advantages__section:not(.page-online-betting-platform-advantages__section--dark) .page-online-betting-platform-advantages__subheading {
    color: #003366;
}


.page-online-betting-platform-advantages__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-online-betting-platform-advantages__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-online-betting-platform-advantages__feature-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for items in dark section */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 204, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-online-betting-platform-advantages__section:not(.page-online-betting-platform-advantages__section--dark) .page-online-betting-platform-advantages__feature-item {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 51, 102, 0.1);
    color: #333333; /* Darker text for light sections */
}
.page-online-betting-platform-advantages__section:not(.page-online-betting-platform-advantages__section--dark) .page-online-betting-platform-advantages__feature-item p {
    color: #333333;
}


.page-online-betting-platform-advantages__feature-item p {
    color: #e0e0e0;
}
.page-online-betting-platform-advantages__section:not(.page-online-betting-platform-advantages__section--dark) .page-online-betting-platform-advantages__feature-item p {
    color: #555555;
}


.page-online-betting-platform-advantages__image {
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFCC00;
}

.page-online-betting-platform-advantages__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 30px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-online-betting-platform-advantages__btn--primary {
    background-color: #FFCC00;
    color: #003366; /* Text on accent color */
    border: 2px solid #FFCC00;
}

.page-online-betting-platform-advantages__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 204, 0, 0.4);
}

.page-online-betting-platform-advantages__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-online-betting-platform-advantages__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 204, 0, 0.4);
}

.page-online-betting-platform-advantages__section--cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #ffffff;
}

.page-online-betting-platform-advantages__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-online-betting-platform-advantages__title {
        font-size: 2.5em;
    }

    .page-online-betting-platform-advantages__subtitle {
        font-size: 1.2em;
    }

    .page-online-betting-platform-advantages__heading {
        font-size: 2em;
    }

    .page-online-betting-platform-advantages__subheading {
        font-size: 1.5em;
    }

    .page-online-betting-platform-advantages__feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-online-betting-platform-advantages__hero {
        padding: 60px 0;
    }
    .page-online-betting-platform-advantages__title {
        font-size: 2em;
    }
    .page-online-betting-platform-advantages__subtitle {
        font-size: 1em;
    }
    .page-online-betting-platform-advantages__heading {
        font-size: 1.8em;
    }
    .page-online-betting-platform-advantages__subheading {
        font-size: 1.3em;
    }
    .page-online-betting-platform-advantages__paragraph {
        font-size: 0.95em;
    }
    .page-online-betting-platform-advantages__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}