.page-cockfighting {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding to avoid header overlap, body handles --header-offset */
}

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

.page-cockfighting__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image on top, content below */
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    background-color: #F4F7FB; /* Consistent background */
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and text */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px; /* Match wrapper */
}

.page-cockfighting__hero-content {
    width: 100%;
    max-width: 900px; /* Constrain content width */
}

.page-cockfighting__main-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    /* No fixed font-size, rely on clamp if absolutely needed, otherwise responsive behavior */
    font-size: clamp(2rem, 5vw, 3.2rem); /* Example using clamp as allowed */
}

.page-cockfighting__intro-text {
    color: #1F2D3D; /* Text Main */
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.3);
}

.page-cockfighting__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__section-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive title size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-cockfighting__content-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG for content sections */
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__content-section:nth-of-type(odd) {
    background-color: #F4F7FB; /* Alternate background for better visual separation */
    box-shadow: none;
    border-radius: 0;
}


.page-cockfighting__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
    text-align: justify;
}

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

.page-cockfighting__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-cockfighting__feature-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-cockfighting__feature-description {
    color: #1F2D3D; /* Text Main */
    font-size: 0.95rem;
}

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

.page-cockfighting__secondary-cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background-color: transparent;
    border: 2px solid #2F6BFF; /* Main color as border */
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-cockfighting__secondary-cta-button:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
}

.page-cockfighting__step-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__step-item {
    background-color: #F4F7FB; /* Background color for steps */
    border-left: 5px solid #2F6BFF; /* Main color accent */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-cockfighting__step-title {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-cockfighting__step-description {
    color: #1F2D3D; /* Text Main */
    font-size: 0.95rem;
}

.page-cockfighting__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
    color: #000000; /* Custom Color_1776249996415 */
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
    color: #1F2D3D; /* Text Main */
    font-size: 1rem;
}

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

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

    .page-cockfighting__intro-text {
        font-size: 1rem;
    }

    .page-cockfighting__cta-button,
    .page-cockfighting__secondary-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px; /* Constrain button width */
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-cockfighting__content-section {
        padding: 40px 0;
    }

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

    /* Enforce mobile image size constraints */
    .page-cockfighting__hero-image,
    .page-cockfighting__feature-image,
    .page-cockfighting__content-section img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }
}

/* Further ensure no image smaller than 200px */
.page-cockfighting img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Maintain aspect ratio and cover area */
}

/* Specific rule for content area images to prevent small sizes */
.page-cockfighting__content-area img,
.page-cockfighting__about-cockfighting img,
.page-cockfighting__why-choose-us img,
.page-cockfighting__how-to-play img,
.page-cockfighting__faq-section img {
    width: auto; /* Allow image to scale */
    height: auto; /* Allow image to scale */
    min-width: 200px;
    min-height: 200px;
    max-width: 100%; /* Ensure it fits container */
}

/* No filter on images */
.page-cockfighting img {
    filter: none !important; /* Override any potential filter */
}