.page-cockfighting {
    font-family: 'Arial', sans-serif;
    background-color: #08160F;
    color: #F2FFF6;
    line-height: 1.6;
}

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2FFF6;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-cockfighting__hero-description {
    font-size: 1.2rem;
    color: #A7D9B8;
    margin-bottom: 30px;
}

.page-cockfighting__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
}

.page-cockfighting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
}

.page-cockfighting__btn-secondary:hover {
    background-color: #2AD16F;
    color: #08160F;
}

.page-cockfighting__section {
    padding: 60px 20px;
    border-bottom: 1px solid #1E3A2A;
}

.page-cockfighting__section:last-of-type {
    border-bottom: none;
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-cockfighting__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-cockfighting__text-block {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #F2FFF6;
}

.page-cockfighting__text-block strong {
    color: #22C768;
}

.page-cockfighting__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px;
    object-fit: cover;
}

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

.page-cockfighting__list li {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #F2FFF6;
    position: relative;
    padding-left: 25px;
}

.page-cockfighting__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    line-height: 1;
}

.page-cockfighting__list--advantages .page-cockfighting__list-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 20px;
}

.page-cockfighting__list--advantages .page-cockfighting__list-heading {
    font-size: 1.3rem;
    color: #22C768;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-cockfighting__list--advantages .page-cockfighting__list-item p {
    font-size: 1rem;
    color: #A7D9B8;
}

.page-cockfighting__cta-center {
    text-align: center;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-cockfighting__card {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #F2FFF6;
}

.page-cockfighting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-cockfighting__card-title {
    font-size: 1.4rem;
    color: #22C768;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-cockfighting__card-description {
    font-size: 1rem;
    color: #A7D9B8;
}

.page-cockfighting__numbered-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin: 30px 0;
}

.page-cockfighting__numbered-list li {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 70px;
    color: #F2FFF6;
}

.page-cockfighting__numbered-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #2AD16F;
    color: #F2FFF6;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.page-cockfighting__numbered-list .page-cockfighting__list-title {
    font-size: 1.3rem;
    color: #22C768;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-cockfighting__numbered-list li p {
    font-size: 1rem;
    color: #A7D9B8;
}

.page-cockfighting__faq-list {
    margin-top: 30px;
}

.page-cockfighting__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6;
    background-color: #11271B;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-cockfighting__faq-question::-webkit-details-marker {
    display: none;
}

.page-cockfighting__faq-question:hover {
    background-color: #1a352a;
}

.page-cockfighting__faq-qtext {
    flex-grow: 1;
    color: #F2FFF6;
}

.page-cockfighting__faq-toggle {
    font-size: 1.5rem;
    margin-left: 20px;
    color: #2AD16F;
    line-height: 1;
}

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

.page-cockfighting__faq-item[open] .page-cockfighting__faq-answer {
    max-height: 500px; /* Adjust as needed for content length */
    transition: max-height 0.3s ease-in;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-cockfighting__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .page-cockfighting__hero-description {
        font-size: 1rem;
    }

    .page-cockfighting__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__section {
        padding: 40px 15px;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-cockfighting__text-block {
        font-size: 0.95rem;
    }

    .page-cockfighting__image-content,
    .page-cockfighting__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-cockfighting__container,
    .page-cockfighting__card-grid,
    .page-cockfighting__card,
    .page-cockfighting__list,
    .page-cockfighting__numbered-list,
    .page-cockfighting__faq-list,
    .page-cockfighting__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-cockfighting__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-cockfighting__card-image {
        height: 200px; /* Adjust for smaller screens */
    }

    .page-cockfighting__list li,
    .page-cockfighting__numbered-list li {
        padding: 15px;
        padding-left: 55px;
        font-size: 1rem;
    }

    .page-cockfighting__list li::before,
    .page-cockfighting__numbered-list li::before {
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .page-cockfighting__numbered-list .page-cockfighting__list-title {
        font-size: 1.1rem;
    }

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

    .page-cockfighting__faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 0.95rem;
    }
}