.page-cockfighting {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    padding-top: 10px; /* Small top padding, main offset handled by body */
}

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

.page-cockfighting__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #F4F7FB;
    padding-bottom: 40px;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 30px;
}

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

.page-cockfighting__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-cockfighting__main-title {
    font-weight: bold;
    color: var(--custom-color_1776249996415);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    /* Using clamp for responsive font size, but within limits as per instruction */
    font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-cockfighting__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 30px;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--custom-color_1776249996415);
    text-align: center;
    margin: 60px 0 40px;
    font-weight: bold;
}

.page-cockfighting__text-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-cockfighting__feature-card {
    background-color: var(--card-b-g);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__feature-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-cockfighting__feature-title {
    font-size: 1.4rem;
    color: var(--custom-color_1776249996415);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-cockfighting__feature-description {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
}

.page-cockfighting__steps-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--card-b-g);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.page-cockfighting__step-number {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.page-cockfighting__step-title {
    font-size: 1.3rem;
    color: var(--custom-color_1776249996415);
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
}

.page-cockfighting__step-description {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.page-cockfighting__cta-button--secondary {
    margin-top: 40px;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%);
}

.page-cockfighting__cta-button--tertiary {
    margin-top: 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Using primary gradient for consistency */
}

.page-cockfighting__faq-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.page-cockfighting__faq-item {
    background-color: var(--card-b-g);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-cockfighting__faq-question {
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--custom-color_1776249996415);
    cursor: pointer;
    position: relative;
    display: block;
    margin: 0;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
}

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

.page-cockfighting__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-item details[open] .page-cockfighting__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-cockfighting__faq-answer {
    padding: 15px 25px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    background-color: #FDFDFD;
    border-top: 1px solid var(--border);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-cockfighting__container {
        padding: 15px;
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-cockfighting__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin: 40px 0 30px;
    }

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

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

    .page-cockfighting__feature-image {
        min-width: 200px;
        min-height: 200px;
        max-width: 100%;
        height: auto;
    }

    .page-cockfighting__feature-title {
        font-size: 1.2rem;
    }

    .page-cockfighting__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .page-cockfighting__step-number {
        margin-bottom: 10px;
    }

    .page-cockfighting__step-title {
        font-size: 1.15rem;
    }

    .page-cockfighting__step-description {
        font-size: 0.9rem;
    }

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

    .page-cockfighting__faq-question::after {
        right: 20px;
        font-size: 1.2rem;
    }

    .page-cockfighting__faq-answer {
        font-size: 0.9rem;
        padding: 12px 20px 20px;
    }

    /* Enforce mobile image responsiveness for all img tags within .page-cockfighting */
    .page-cockfighting img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-content {
        padding: 0 15px;
    }

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

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

    .page-cockfighting__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
}