.page-fishing-games-fishing-game-strategy-sharing {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A1A2E; /* Dark background */
    line-height: 1.6;
}

.page-fishing-games-fishing-game-strategy-sharing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-fishing-games-fishing-game-strategy-sharing .hero-section {
    background: linear-gradient(135deg, #FFD700, #DC143C); /* Gold to Crimson gradient */
    padding: 80px 0;
    text-align: center;
    color: #1A1A2E; /* Dark text on light gradient background */
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-fishing-games-fishing-game-strategy-sharing .hero-title {
    font-size: 3.2em;
    color: #1A1A2E; /* Dark text for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-fishing-games-fishing-game-strategy-sharing .hero-subtitle {
    font-size: 1.3em;
    color: #333; /* Slightly lighter dark text */
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-fishing-games-fishing-game-strategy-sharing .hero-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.page-fishing-games-fishing-game-strategy-sharing .hero-image:hover {
    transform: translateY(-5px);
}

.page-fishing-games-fishing-game-strategy-sharing .content-section {
    padding: 60px 0;
    background-color: #1A1A2E;
}

.page-fishing-games-fishing-game-strategy-sharing .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #DC143C; /* Crimson underline */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-fishing-games-fishing-game-strategy-sharing .sub-section-title {
    font-size: 1.8em;
    color: #DC143C; /* Crimson for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-fishing-games-fishing-game-strategy-sharing p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-fishing-games-fishing-game-strategy-sharing ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-fishing-games-fishing-game-strategy-sharing ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-fishing-games-fishing-game-strategy-sharing .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    display: block; /* Ensures it takes up full width and centers if needed */
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-fishing-game-strategy-sharing .faq-item {
    background-color: #2A2A3E; /* Slightly lighter dark background for FAQ items */
    border: 1px solid #3A3A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.page-fishing-games-fishing-game-strategy-sharing .faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
}

.page-fishing-games-fishing-game-strategy-sharing .faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold for FAQ questions */
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

.page-fishing-games-fishing-game-strategy-sharing .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #DC143C;
    transition: transform 0.3s ease;
}

.page-fishing-games-fishing-game-strategy-sharing .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-fishing-games-fishing-game-strategy-sharing .faq-answer {
    font-size: 1em;
    color: #C0C0C0; /* Lighter gray for answers */
    max-height: 0; /* Hidden by default for accordion effect */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Smooth transition */
    padding-top: 0; /* No padding when closed */
    border-top: 1px dashed #3A3A4E;
    margin-top: 10px;
}

.page-fishing-games-fishing-game-strategy-sharing .faq-answer.active {
    max-height: 500px; /* A generous max-height for content, will be adjusted by JS scrollHeight */
    padding-top: 10px;
}

.page-fishing-games-fishing-game-strategy-sharing .cta-buttons {
    text-align: center;
    margin-top: 50px;
}

.page-fishing-games-fishing-game-strategy-sharing .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin: 0 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.page-fishing-games-fishing-game-strategy-sharing .btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A2E; /* Dark text */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-fishing-games-fishing-game-strategy-sharing .btn-primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-fishing-games-fishing-game-strategy-sharing .btn-secondary {
    background-color: #DC143C; /* Crimson button */
    color: #FFFFFF; /* White text */
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.page-fishing-games-fishing-game-strategy-sharing .btn-secondary:hover {
    background-color: #c20f36; /* Darker crimson */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-fishing-games-fishing-game-strategy-sharing .hero-title {
        font-size: 2.5em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .hero-subtitle {
        font-size: 1.1em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .section-title {
        font-size: 2em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .sub-section-title {
        font-size: 1.5em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-fishing-game-strategy-sharing .hero-title {
        font-size: 2em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .hero-subtitle {
        font-size: 1em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .section-title {
        font-size: 1.8em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .sub-section-title {
        font-size: 1.3em;
    }
    .page-fishing-games-fishing-game-strategy-sharing .faq-question {
        font-size: 1.1em;
    }
    .page-fishing-games-fishing-game-strategy-sharing p,
    .page-fishing-games-fishing-game-strategy-sharing ul li {
        font-size: 0.95em;
    }
}