body {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-fishing-games-strategy {
    max-width: 1390px;
    margin: 0 auto;
    padding: 10px 15px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-fishing-games-strategy__hero-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 10px; /* Small top padding for first section */
}

.page-fishing-games-strategy__hero-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 9; /* Consistent aspect ratio for hero */
}

.page-fishing-games-strategy__hero-content-wrapper {
    text-align: center;
    padding: 0 15px;
}

.page-fishing-games-strategy__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: #F3C54D;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-fishing-games-strategy__description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-strategy__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
    font-size: 1.1rem;
}

.page-fishing-games-strategy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 176, 74, 0.6);
}

.page-fishing-games-strategy__section {
    background-color: #2A1212;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-strategy__heading {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #F3C54D;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.page-fishing-games-strategy__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #D86A14;
    border-radius: 2px;
}

.page-fishing-games-strategy__content {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-fishing-games-strategy__benefit-list,
.page-fishing-games-strategy__tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-fishing-games-strategy__benefit-item,
.page-fishing-games-strategy__tip-item {
    background-color: #140C0C;
    border-left: 4px solid #F3C54D;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__benefit-item strong,
.page-fishing-games-strategy__tip-item strong {
    color: #FFB04A;
}

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

.page-fishing-games-strategy__strategy-card {
    background-color: #140C0C;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E;
    transition: transform 0.3s ease;
}

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

.page-fishing-games-strategy__strategy-title {
    font-size: 1.35rem;
    color: #FFB04A;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-fishing-games-strategy__strategy-text {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

.page-fishing-games-strategy__image-wrapper {
    text-align: center;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.page-fishing-games-strategy__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    object-fit: cover;
    object-position: center;
}

.page-fishing-games-strategy__faq-list {
    margin-top: 20px;
}

.page-fishing-games-strategy__faq-item {
    background-color: #140C0C;
    border: 1px solid #6A1E1E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-fishing-games-strategy__faq-question {
    font-size: 1.15rem;
    color: #F3C54D;
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2A1212;
    margin: 0;
    font-weight: 600;
}

.page-fishing-games-strategy__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-fishing-games-strategy__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-fishing-games-strategy__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #140C0C;
}

.page-fishing-games-strategy__faq-answer p {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.page-fishing-games-strategy__faq-button {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.page-fishing-games-strategy__faq-button:hover {
    background: linear-gradient(180deg, #FFC570 0%, #E87A24 100%);
}

.page-fishing-games-strategy__call-to-action {
    text-align: center;
    padding: 40px 30px;
    background-color: #2A1212;
}

.page-fishing-games-strategy__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

@media (max-width: 849px) {
    .page-fishing-games-strategy {
        padding: 10px;
    }
    .page-fishing-games-strategy__main-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }
    .page-fishing-games-strategy__description {
        font-size: 1rem;
    }
    .page-fishing-games-strategy__section {
        padding: 20px;
    }
    .page-fishing-games-strategy__heading {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    .page-fishing-games-strategy__strategy-grid {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-strategy__content {
        text-align: left;
    }
    .page-fishing-games-strategy__hero-image-wrapper img,
    .page-fishing-games-strategy__image-wrapper img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-strategy__hero-image-wrapper img,
    .page-fishing-games-strategy__image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-fishing-games-strategy {
        max-width: 100%;
        overflow-x: hidden;
    }
    .page-fishing-games-strategy__content, .page-fishing-games-strategy__strategy-text {
        text-align: left;
    }
}

@media (max-width: 549px) {
    .page-fishing-games-strategy__hero-section {
        gap: 15px;
    }
    .page-fishing-games-strategy__main-title {
        font-size: clamp(1.4rem, 8vw, 2.2rem);
    }
    .page-fishing-games-strategy__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-fishing-games-strategy__section {
        margin-bottom: 20px;
    }
    .page-fishing-games-strategy__heading {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .page-fishing-games-strategy__benefit-item,
    .page-fishing-games-strategy__tip-item {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    .page-fishing-games-strategy__strategy-title {
        font-size: 1.2rem;
    }
    .page-fishing-games-strategy__strategy-text {
        font-size: 0.9rem;
    }
    .page-fishing-games-strategy__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-fishing-games-strategy__faq-answer p {
        font-size: 0.9rem;
    }
    .page-fishing-games-strategy__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}