/* style/high-win-strategies.css */
.page-high-win-strategies {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light grey for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
}

.page-high-win-strategies__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-high-win-strategies__section {
    padding: 60px 0;
}

.page-high-win-strategies__section:nth-child(even) {
    background-color: rgba(255, 215, 0, 0.05); /* Slightly lighter background for contrast */
}

.page-high-win-strategies__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-high-win-strategies__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #E0E0E0; /* Slightly lighter text for readability */
}

.page-high-win-strategies__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-high-win-strategies__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}

.page-high-win-strategies__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-high-win-strategies__hero-title .highlight {
    color: #FFD700;
}

.page-high-win-strategies__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-high-win-strategies__hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-high-win-strategies__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-high-win-strategies__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-high-win-strategies__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-high-win-strategies__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-high-win-strategies__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
}

.page-high-win-strategies__btn--link {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-high-win-strategies__btn--link:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-high-win-strategies__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.page-high-win-strategies__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-high-win-strategies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-high-win-strategies__card {
    background-color: #1A3A60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-high-win-strategies__card:hover {
    transform: translateY(-10px);
    background-color: #2A4D70;
}

.page-high-win-strategies__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-high-win-strategies__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-high-win-strategies__card-description {
    font-size: 1em;
    color: #E0E0E0;
}

.page-high-win-strategies__strategy-item {
    background-color: #1A3A60;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-high-win-strategies__strategy-subtitle {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-high-win-strategies__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-high-win-strategies__list li {
    background-color: #1A3A60;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #E0E0E0;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-high-win-strategies__list li strong {
    color: #FFD700;
}

.page-high-win-strategies__image--full-width {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-high-win-strategies__cta-bottom {
    text-align: center;
    background-color: #1A3A60;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

.page-high-win-strategies__cta-bottom .page-high-win-strategies__section-title {
    color: #FFD700;
}

.page-high-win-strategies__cta-bottom .page-high-win-strategies__text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
}

.page-high-win-strategies__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-high-win-strategies__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-high-win-strategies__detail-card {
    background-color: #1A3A60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-high-win-strategies__detail-card:hover {
    transform: translateY(-10px);
}

.page-high-win-strategies__detail-title {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-high-win-strategies__detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-high-win-strategies__detail-title a:hover {
    text-decoration: underline;
}

.page-high-win-strategies__detail-description {
    color: #E0E0E0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-high-win-strategies__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-high-win-strategies__hero-content {
        max-width: 100%;
    }

    .page-high-win-strategies__hero-image-wrapper {
        margin-top: 40px;
        max-width: 80%;
    }

    .page-high-win-strategies__hero-title {
        font-size: 2.8em;
    }

    .page-high-win-strategies__hero-description {
        font-size: 1.1em;
    }

    .page-high-win-strategies__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-high-win-strategies__section {
        padding: 40px 0;
    }

    .page-high-win-strategies__hero {
        padding: 60px 15px;
    }

    .page-high-win-strategies__hero-title {
        font-size: 2.2em;
    }

    .page-high-win-strategies__hero-description {
        font-size: 1em;
    }

    .page-high-win-strategies__hero-actions,
    .page-high-win-strategies__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-high-win-strategies__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-high-win-strategies__grid,
    .page-high-win-strategies__detail-list {
        grid-template-columns: 1fr;
    }

    .page-high-win-strategies__card,
    .page-high-win-strategies__strategy-item,
    .page-high-win-strategies__list li,
    .page-high-win-strategies__detail-card {
        padding: 20px;
    }

    .page-high-win-strategies__section-title {
        font-size: 1.8em;
    }

    .page-high-win-strategies__strategy-subtitle {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-high-win-strategies__hero-title {
        font-size: 1.8em;
    }

    .page-high-win-strategies__section-title {
        font-size: 1.6em;
    }

    .page-high-win-strategies__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
}