.page-fishing-games {
    background-color: #F4F7FB; /* Background color from custom scheme */
    color: #1F2D3D; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Small top padding for the first section, relying on body padding for header offset */
.page-fishing-games__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Use primary/secondary for hero background */
    display: flex;
    flex-direction: column; /* Image above, text below */
    align-items: center;
    text-align: center;
    position: relative; /* For potential glow effect */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for image */
    margin-bottom: 20px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
    color: #FFFFFF; /* White text on blue background */
}

.page-fishing-games__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.page-fishing-games__lead-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

/* General Section Styling */
.page-fishing-games__about-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section,
.page-fishing-games__contact-cta {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-fishing-games__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #2F6BFF; /* Main color for section titles */
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

.page-fishing-games__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #6FA3FF; /* Accent color for underline */
    border-radius: 2px;
}

.page-fishing-games__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.page-fishing-games__text-block {
    flex: 1;
    min-width: 300px;
    color: #1F2D3D;
}

.page-fishing-games__image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-fishing-games__image-block--center {
    flex: none; /* Override flex for centered image block */
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.page-fishing-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min-size */
    min-height: 200px; /* Enforce min-size */
}

.page-fishing-games__features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-fishing-games__feature-item {
    background-color: #F4F7FB; /* Background color for feature cards */
    padding: 25px;
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color for feature titles */
    margin-bottom: 10px;
}

.page-fishing-games__secondary-cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.page-fishing-games__secondary-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.page-fishing-games__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-fishing-games__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    padding-left: 60px;
}

.page-fishing-games__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #2F6BFF; /* Main color for step numbers */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-fishing-games__step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 5px;
}

.page-fishing-games__faq-item {
    background-color: #F4F7FB; /* Background color for FAQ items */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-fishing-games__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2F6BFF; /* Main color for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
}

.page-fishing-games__faq-answer {
    font-size: 1rem;
    color: #1F2D3D;
}

.page-fishing-games__contact-cta {
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 40px;
}

.page-fishing-games__text-center {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-fishing-games__final-cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
}

.page-fishing-games__final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-fishing-games__hero-section {
        padding-top: 5px; /* Adjust for smaller screens */
        padding-bottom: 30px;
    }

    .page-fishing-games__hero-content {
        padding: 0 15px;
    }

    .page-fishing-games__main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .page-fishing-games__lead-text {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .page-fishing-games__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-fishing-games__about-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__faq-section,
    .page-fishing-games__contact-cta {
        margin: 30px auto;
        padding: 20px 15px;
    }

    .page-fishing-games__section-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 20px;
    }

    .page-fishing-games__content-wrapper {
        flex-direction: column;
    }

    .page-fishing-games__text-block,
    .page-fishing-games__image-block {
        min-width: unset;
        width: 100%;
    }

    .page-fishing-games__content-image {
        max-width: 100%; /* Ensure images are responsive */
        height: auto;
    }

    .page-fishing-games__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games__feature-item {
        padding: 20px;
    }

    .page-fishing-games__feature-title {
        font-size: 1.2rem;
    }

    .page-fishing-games__step-item {
        padding-left: 50px;
        margin-bottom: 20px;
    }

    .page-fishing-games__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .page-fishing-games__step-title {
        font-size: 1.15rem;
    }

    .page-fishing-games__faq-question {
        font-size: 1.1rem;
    }

    .page-fishing-games__final-cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* All img elements within .page-fishing-games must be responsive */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure color contrast for text */
.page-fishing-games p,
.page-fishing-games li,
.page-fishing-games h2,
.page-fishing-games h3,
.page-fishing-games__lead-text {
    color: #1F2D3D; /* Ensure good contrast against white/light backgrounds */
}
.page-fishing-games__hero-content h1,
.page-fishing-games__hero-content p,
.page-fishing-games__cta-button {
    color: #FFFFFF; /* Ensure good contrast against blue gradient */
}

/* Enforce min image size for content area */
.page-fishing-games__about-section img,
.page-fishing-games__how-to-play-section img {
    min-width: 200px;
    min-height: 200px;
}