.page-cockfighting {
    background-color: #08160F;
    color: #F2FFF6;
    padding-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-cockfighting__hero-section {
    position: relative;
    margin-bottom: 30px;
    padding-top: 10px; /* Minimal top padding for inner page */
}

.page-cockfighting__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    display: block;
}

.page-cockfighting__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; /* For a content hero, 16:9 is common */
    object-fit: cover;
    object-position: center;
}

.page-cockfighting__hero-content {
    max-width: 1200px;
    margin: -100px auto 0 auto; /* Adjust margin to pull content up over hero image */
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
    border-radius: 8px;
}

.page-cockfighting__main-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__intro-text {
    font-size: 1.1rem;
    color: #A7D9B8;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.page-cockfighting__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-cockfighting__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}

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

.page-cockfighting__content-wrapper {
    font-size: 1rem;
    line-height: 1.7;
    color: #F2FFF6;
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__content-wrapper p {
    margin-bottom: 15px;
}

.page-cockfighting__image-figure {
    margin: 30px auto;
    text-align: center;
}

.page-cockfighting__image-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__image-caption {
    font-size: 0.9rem;
    color: #A7D9B8;
    margin-top: 10px;
}

.page-cockfighting__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-cockfighting__ordered-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 20px 0;
}

.page-cockfighting__list-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #F2FFF6;
}

.page-cockfighting__list-item strong {
    color: #22C768;
}

.page-cockfighting__list-item::before {
    content: '✅'; /* Green checkmark emoji */
    position: absolute;
    left: 0;
    top: 0;
    color: #2AD16F; /* Match button green */
}

.page-cockfighting__ordered-list .page-cockfighting__list-item::before {
    content: none; /* Remove checkmark for ordered list */
}

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

.page-cockfighting__grid-list .page-cockfighting__list-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__grid-list .page-cockfighting__list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-cockfighting__grid-list .page-cockfighting__list-item::before {
    display: none;
}

.page-cockfighting__list-title {
    font-size: 1.25rem;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-cockfighting__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-cockfighting__cta-button--secondary {
    background: linear-gradient(180deg, #F2C14E 0%, #ff9900 100%); /* Gold gradient for secondary CTA */
    color: #08160F;
}

.page-cockfighting__cta-button--secondary:hover {
    background: linear-gradient(180deg, #ff9900 0%, #F2C14E 100%);
}

.page-cockfighting__faq-list {
    max-width: 800px;
    margin: 30px auto;
}

.page-cockfighting__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-cockfighting__faq-question {
    font-size: 1.15rem;
    color: #F2FFF6;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-cockfighting__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #2AD16F;
    transition: transform 0.3s ease;
}

/* Simple JS to toggle active class for FAQ if needed */
.page-cockfighting__faq-item.active .page-cockfighting__faq-question::after {
    transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
    font-size: 1rem;
    color: #A7D9B8;
    margin-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    max-height: 200px; /* Max height for open state, adjust as needed */
}

.page-cockfighting__cta-bottom-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    max-width: 1000px;
}

@media (max-width: 849px) {
    .page-cockfighting__hero-content {
        margin-top: -60px;
        padding: 15px;
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .page-cockfighting__intro-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .page-cockfighting__section {
        margin: 30px auto;
        padding: 0 15px;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        margin-bottom: 25px;
    }

    .page-cockfighting__content-wrapper {
        font-size: 0.95rem;
    }

    .page-cockfighting__grid-list {
        grid-template-columns: 1fr;
    }

    .page-cockfighting__list-item {
        padding-left: 20px;
    }

    .page-cockfighting__list-item::before {
        left: 0;
        font-size: 0.9em;
    }

    .page-cockfighting__image-figure img {
        min-width: 200px;
        min-
    }

    .page-cockfighting__faq-question {
        font-size: 1.05rem;
    }

    .page-cockfighting__faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-banner img,
    .page-cockfighting__image-figure img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are responsive and not too small */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size for display */
        min- /* Enforce min size for display */
    }

    .page-cockfighting__content-wrapper table {
        overflow-x: auto;
        display: block;
        width: 100%;
    }
}

@media (max-width: 549px) {
    .page-cockfighting__hero-content {
        margin-top: -40px;
        padding: 10px;
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.1rem, 7vw, 1.75rem);
    }

    .page-cockfighting__intro-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
        margin-bottom: 20px;
    }

    .page-cockfighting__content-wrapper {
        font-size: 0.9rem;
    }

    .page-cockfighting__cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .page-cockfighting__list-item {
        font-size: 0.9rem;
    }

    .page-cockfighting__faq-question {
        font-size: 1rem;
    }

    .page-cockfighting__faq-answer {
        font-size: 0.9rem;
    }
}