.page-fishing-games-guide__hero-section {
    background-color: #017439;
    padding: 10px 20px 40px;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-fishing-games-guide__hero-visual {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.page-fishing-games-guide__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-fishing-games-guide__main-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.page-fishing-games-guide__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-guide__cta-button {
    display: inline-block;
    background-color: #C30808;
    color: #FFFF00;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-guide__cta-button:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-fishing-games-guide__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-top: 20px;
}

.page-fishing-games-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #017439;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-fishing-games-guide__intro-section,
.page-fishing-games-guide__how-to-play-section,
.page-fishing-games-guide__strategy-section,
.page-fishing-games-guide__features-section,
.page-fishing-games-guide__faq-section,
.page-fishing-games-guide__cta-section {
    background-color: #FFFFFF;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-guide__text-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
}

.page-fishing-games-guide__intro-section img,
.page-fishing-games-guide__faq-section img,
.page-fishing-games-guide__cta-section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-fishing-games-guide__step-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-fishing-games-guide__step-item:hover {
    transform: translateY(-5px);
}

.page-fishing-games-guide__step-title {
    font-size: 1.5rem;
    color: #017439;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games-guide__step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

.page-fishing-games-guide__step-description a {
    color: #C30808;
    text-decoration: none;
    font-weight: 600;
}

.page-fishing-games-guide__step-description a:hover {
    text-decoration: underline;
}

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

.page-fishing-games-guide__strategy-item {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-fishing-games-guide__strategy-item img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.page-fishing-games-guide__strategy-title {
    font-size: 1.4rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games-guide__strategy-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

.page-fishing-games-guide__features-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-fishing-games-guide__feature-item {
    background-color: #e6f3ed;
    padding: 20px;
    border-left: 5px solid #017439;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.6;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-guide__feature-item strong {
    color: #017439;
}

.page-fishing-games-guide__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-guide__faq-item {
    background-color: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    text-align: left;
}

.page-fishing-games-guide__faq-question {
    font-size: 1.25rem;
    color: #017439;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-fishing-games-guide__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

.page-fishing-games-guide__cta-button--large {
    padding: 18px 35px;
    font-size: 1.25rem;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-fishing-games-guide__hero-section {
        padding: 10px 15px 30px;
    }

    .page-fishing-games-guide__hero-visual img {
        aspect-ratio: 16/9;
    }

    .page-fishing-games-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .page-fishing-games-guide__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-fishing-games-guide__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-fishing-games-guide__intro-section,
    .page-fishing-games-guide__how-to-play-section,
    .page-fishing-games-guide__strategy-section,
    .page-fishing-games-guide__features-section,
    .page-fishing-games-guide__faq-section,
    .page-fishing-games-guide__cta-section {
        padding: 40px 15px;
        margin: 20px auto;
    }

    .page-fishing-games-guide__text-content {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-fishing-games-guide__steps-list,
    .page-fishing-games-guide__strategy-grid,
    .page-fishing-games-guide__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-fishing-games-guide__step-item,
    .page-fishing-games-guide__strategy-item,
    .page-fishing-games-guide__feature-item,
    .page-fishing-games-guide__faq-item {
        padding: 20px;
    }

    .page-fishing-games-guide__step-title,
    .page-fishing-games-guide__strategy-title {
        font-size: 1.3rem;
    }

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

    .page-fishing-games-guide__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-guide__intro-section img,
    .page-fishing-games-guide__faq-section img,
    .page-fishing-games-guide__cta-section img,
    .page-fishing-games-guide__strategy-item img {
        max-width: 100%;
        height: auto; /* Ensure images don't overflow */
    }
}

/* Ensure content area images do not display smaller than 200px */
.page-fishing-games-guide__intro-section img,
.page-fishing-games-guide__faq-section img,
.page-fishing-games-guide__cta-section img,
.page-fishing-games-guide__strategy-item img {
    min-width: 200px;
    min-height: 200px;
}