.page-e-games-fishing-games-guide {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-e-games-fishing-games-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-e-games-fishing-games-guide__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-e-games-fishing-games-guide__section:nth-child(even) {
    background-color: #f0f5f9;
}

.page-e-games-fishing-games-guide__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

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

.page-e-games-fishing-games-guide__sub-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-e-games-fishing-games-guide__hero-section {
    background: linear-gradient(135deg, #003366 0%, #0a4d8c 100%);
    color: #ffffff;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

.page-e-games-fishing-games-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:hero_banner]') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 1;
}

.page-e-games-fishing-games-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.page-e-games-fishing-games-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFD700;
}

.page-e-games-fishing-games-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-e-games-fishing-games-guide__hero-image-wrapper {
    display: none; /* Hide image in hero section for better text focus on small screens */
}

.page-e-games-fishing-games-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
    cursor: pointer;
}

.page-e-games-fishing-games-guide__button--primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

.page-e-games-fishing-games-guide__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-e-games-fishing-games-guide__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-e-games-fishing-games-guide__button--secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-e-games-fishing-games-guide__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-e-games-fishing-games-guide__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-e-games-fishing-games-guide__list li strong {
    color: #003366;
}

.page-e-games-fishing-games-guide__image-full-width {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-e-games-fishing-games-guide__grid-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #003366;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-e-games-fishing-games-guide__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-e-games-fishing-games-guide__grid-title {
    font-size: 1.5em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-e-games-fishing-games-guide__faq-item {
    background-color: #f0f5f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-e-games-fishing-games-guide__faq-item:hover {
    background-color: #e6eff7;
}

.page-e-games-fishing-games-guide__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
}

.page-e-games-fishing-games-guide__faq-question::before {
    content: '+ ';
    color: #FFD700;
    margin-right: 10px;
}

.page-e-games-fishing-games-guide__faq-item.active .page-e-games-fishing-games-guide__faq-question::before {
    content: '- ';
}

.page-e-games-fishing-games-guide__faq-item p {
    font-size: 1em;
    color: #555;
    margin-left: 30px;
    display: none; /* Hidden by default */
}

.page-e-games-fishing-games-guide__faq-item.active p {
    display: block; /* Show when active */
}

.page-e-games-fishing-games-guide__cta {
    background: linear-gradient(45deg, #003366, #0a4d8c);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    border-radius: 15px;
    margin-top: 40px;
}

.page-e-games-fishing-games-guide__cta .page-e-games-fishing-games-guide__section-title {
    color: #FFD700;
    margin-bottom: 25px;
}

.page-e-games-fishing-games-guide__cta .page-e-games-fishing-games-guide__section-title::after {
    background-color: #fff;
}

.page-e-games-fishing-games-guide__cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-e-games-fishing-games-guide__hero-title {
        font-size: 2.8em;
    }
    .page-e-games-fishing-games-guide__hero-description {
        font-size: 1.1em;
    }
    .page-e-games-fishing-games-guide__section-title {
        font-size: 2em;
    }
    .page-e-games-fishing-games-guide__sub-title {
        font-size: 1.6em;
    }
    .page-e-games-fishing-games-guide__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-e-games-fishing-games-guide__hero-section {
        padding: 80px 0;
    }
    .page-e-games-fishing-games-guide__hero-title {
        font-size: 2.2em;
    }
    .page-e-games-fishing-games-guide__hero-description {
        font-size: 1em;
    }
    .page-e-games-fishing-games-guide__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-e-games-fishing-games-guide__section {
        padding: 40px 0;
    }
    .page-e-games-fishing-games-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-e-games-fishing-games-guide__sub-title {
        font-size: 1.4em;
    }
    .page-e-games-fishing-games-guide__list li {
        font-size: 0.95em;
    }
    .page-e-games-fishing-games-guide__faq-question {
        font-size: 1.1em;
    }
    .page-e-games-fishing-games-guide__cta p {
        font-size: 1.05em;
    }
}

@media (max-width: 480px) {
    .page-e-games-fishing-games-guide__hero-section {
        padding: 60px 0;
    }
    .page-e-games-fishing-games-guide__hero-title {
        font-size: 1.8em;
    }
    .page-e-games-fishing-games-guide__hero-description {
        font-size: 0.9em;
    }
    .page-e-games-fishing-games-guide__button {
        margin: 5px;
    }
    .page-e-games-fishing-games-guide__section-title {
        font-size: 1.5em;
    }
    .page-e-games-fishing-games-guide__list li {
        padding-left: 25px;
    }
}