.page-fishing-games {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    padding-bottom: 40px; /* Add some padding at the bottom of the main content */
}

.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure no overflow */
}

.page-fishing-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Match hero image width */
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.page-fishing-games__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px; /* Apply border-radius to the image */
}

.page-fishing-games__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-fishing-games__main-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-fishing-games__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-fishing-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-fishing-games__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly darker on hover */
    transform: translateY(-2px);
}

.page-fishing-games__introduction-section,
.page-fishing-games__features-section,
.page-fishing-games__how-to-play-section,
.page-fishing-games__faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games__section-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.page-fishing-games__text-content {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #1F2D3D;
}

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

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

.page-fishing-games__feature-card:hover {
    transform: translateY(-5px);
}

.page-fishing-games__feature-image {
    width: 100%;
    height: auto;
    max-height: 250px; /* Constrain image height in cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    display: block; /* Remove extra space below image */
}

.page-fishing-games__feature-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-fishing-games__feature-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-fishing-games__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-fishing-games__list-item {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-fishing-games__list-item:last-child {
    margin-bottom: 0;
}

.page-fishing-games__step-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-fishing-games__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 15px;
}

.page-fishing-games__inline-cta {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-fishing-games__inline-cta:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-fishing-games__cta-button--large {
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-fishing-games__faq-item {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-fishing-games__faq-question {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    /* cursor: pointer; */ /* Removed as no JS functionality for collapse */
}

.page-fishing-games__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-fishing-games__view-all-faq {
    display: block;
    text-align: center;
    margin-top: 30px;
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-fishing-games__view-all-faq:hover {
    color: #6FA3FF; /* Auxiliary color on hover */
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-fishing-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Adjust H1 for mobile */
    }

    .page-fishing-games__section-title {
        font-size: 1.8em;
    }

    .page-fishing-games__feature-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-fishing-games__hero-content,
    .page-fishing-games__introduction-section,
    .page-fishing-games__features-section,
    .page-fishing-games__how-to-play-section,
    .page-fishing-games__faq-section {
        margin-left: 15px;
        margin-right: 15px;
        padding: 15px;
    }

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

    .page-fishing-games__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Enforce max-width for images in content area */
    .page-fishing-games img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are not too small as per rules */
.page-fishing-games__feature-image,
.page-fishing-games__hero-image {
    min-width: 200px; /* Global minimum for content images */
    min-height: 200px; /* Global minimum for content images */
}