/* style/index-why-choose-fishing-good88.css */

/* Variables from custom color scheme */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-main: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-index-why-choose-fishing-good88 {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Light text on dark background */
    background-color: var(--background-main); /* Deep green background */
    line-height: 1.6;
    padding-bottom: 60px;
}

.page-index-why-choose-fishing-good88__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-index-why-choose-fishing-good88__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
    text-align: center;
}

.page-index-why-choose-fishing-good88__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.page-index-why-choose-fishing-good88__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 300px; /* Ensure minimum size */
}

.page-index-why-choose-fishing-good88__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-index-why-choose-fishing-good88__main-title {
    color: var(--glow-color);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-index-why-choose-fishing-good88__hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Section Titles */
.page-index-why-choose-fishing-good88__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--glow-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

/* Text Blocks */
.page-index-why-choose-fishing-good88__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
    text-align: justify;
}

/* Buttons */
.page-index-why-choose-fishing-good88__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-why-choose-fishing-good88__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-index-why-choose-fishing-good88__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    opacity: 0.9;
}

.page-index-why-choose-fishing-good88__btn-secondary {
    background: transparent;
    color: var(--glow-color);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(46, 122, 78, 0.3);
}

.page-index-why-choose-fishing-good88__btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(46, 122, 78, 0.5);
    background-color: rgba(46, 122, 78, 0.2);
}

.page-index-why-choose-fishing-good88__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Introduction Section */
.page-index-why-choose-fishing-good88__introduction-section {
    padding: 60px 0;
    background-color: var(--background-main);
}

/* Advantages Section */
.page-index-why-choose-fishing-good88__advantages-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.page-index-why-choose-fishing-good88__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-why-choose-fishing-good88__advantage-card {
    background-color: var(--deep-green);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-why-choose-fishing-good88__card-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.page-index-why-choose-fishing-good88__card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

.page-index-why-choose-fishing-good88__card-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

/* How to Join Section */
.page-index-why-choose-fishing-good88__how-to-join-section {
    padding: 80px 0;
    background-color: var(--background-main);
}

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

.page-index-why-choose-fishing-good88__step-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-index-why-choose-fishing-good88__step-title {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-why-choose-fishing-good88__step-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Support Section */
.page-index-why-choose-fishing-good88__support-section {
    padding: 80px 0;
    background-color: var(--card-bg);
    text-align: center;
}

.page-index-why-choose-fishing-good88__support-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    margin: 30px auto;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-index-why-choose-fishing-good88__faq-section {
    padding: 80px 0;
    background-color: var(--background-main);
}

.page-index-why-choose-fishing-good88__faq-list {
    margin-top: 40px;
}

.page-index-why-choose-fishing-good88__faq-item {
    background-color: var(--deep-green);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-why-choose-fishing-good88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    list-style: none; /* For details/summary */
}

.page-index-why-choose-fishing-good88__faq-question::-webkit-details-marker {
    display: none;
}

.page-index-why-choose-fishing-good88__faq-item[open] .page-index-why-choose-fishing-good88__faq-question {
    border-bottom: 1px solid var(--border-color);
}

.page-index-why-choose-fishing-good88__faq-qtext {
    flex-grow: 1;
}

.page-index-why-choose-fishing-good88__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-index-why-choose-fishing-good88__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary);
    background-color: var(--card-bg);
}

.page-index-why-choose-fishing-good88__faq-answer p {
    margin: 0;
}

/* Conclusion Section */
.page-index-why-choose-fishing-good88__conclusion-section {
    padding: 80px 0;
    background-color: var(--card-bg);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-why-choose-fishing-good88__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .page-index-why-choose-fishing-good88__section-title {
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-index-why-choose-fishing-good88 {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-index-why-choose-fishing-good88__hero-section {
        padding-bottom: 40px;
    }

    .page-index-why-choose-fishing-good88__hero-content {
        padding: 0 15px;
    }

    .page-index-why-choose-fishing-good88__main-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .page-index-why-choose-fishing-good88__hero-description {
        font-size: 1rem;
    }

    .page-index-why-choose-fishing-good88__section-title {
        font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    }

    .page-index-why-choose-fishing-good88__text-block,
    .page-index-why-choose-fishing-good88__card-text,
    .page-index-why-choose-fishing-good88__step-text,
    .page-index-why-choose-fishing-good88__faq-answer {
        font-size: 0.95rem;
    }

    .page-index-why-choose-fishing-good88__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px;
    }

    .page-index-why-choose-fishing-good88__cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .page-index-why-choose-fishing-good88__container,
    .page-index-why-choose-fishing-good88__advantages-section,
    .page-index-why-choose-fishing-good88__how-to-join-section,
    .page-index-why-choose-fishing-good88__support-section,
    .page-index-why-choose-fishing-good88__faq-section,
    .page-index-why-choose-fishing-good88__conclusion-section {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-index-why-choose-fishing-good88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-index-why-choose-fishing-good88__hero-image-wrapper,
    .page-index-why-choose-fishing-good88__card-image,
    .page-index-why-choose-fishing-good88__support-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-index-why-choose-fishing-good88__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-index-why-choose-fishing-good88__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-fishing-good88__main-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .page-index-why-choose-fishing-good88__section-title {
        font-size: clamp(1.4rem, 6.5vw, 2rem);
    }

    .page-index-why-choose-fishing-good88__cta-button {
        font-size: 0.95rem;
    }
}