.page-cockfighting {
    font-family: Arial, sans-serif;
    color: #1F2D3D;
    background-color: #F4F7FB;
}

.page-cockfighting__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed for aspect ratio */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-cockfighting__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFFFFF;
    /* Using clamp for responsive font-size, avoiding fixed large values */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-cockfighting__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.page-cockfighting__section-description {
    font-size: 1.05rem;
    color: #1F2D3D;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-cockfighting__introduction-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-cockfighting__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-cockfighting__text-content {
    flex: 1;
}

.page-cockfighting__text-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-cockfighting__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-cockfighting__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
}

.page-cockfighting__button {
    display: inline-block;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-cockfighting__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__button--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

.page-cockfighting__button--hero {
    padding: 18px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
}

.page-cockfighting__types-section {
    background-color: #F4F7FB;
    padding: 60px 0;
}

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

.page-cockfighting__type-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease;
}

.page-cockfighting__type-card:hover {
    transform: translateY(-5px);
}

.page-cockfighting__type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-cockfighting__type-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1F2D3D;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-cockfighting__type-text {
    font-size: 0.95rem;
    color: #1F2D3D;
    line-height: 1.6;
    padding: 0 15px;
}

.page-cockfighting__guide-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-cockfighting__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-cockfighting__step-card {
    background-color: #F4F7FB;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    border: 1px solid #D6E2FF;
}

.page-cockfighting__step-card:hover {
    background-color: #E8EEF6;
}

.page-cockfighting__step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__step-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1F2D3D;
    margin-bottom: 10px;
}

.page-cockfighting__step-text {
    font-size: 0.95rem;
    color: #1F2D3D;
    line-height: 1.6;
}

.page-cockfighting__benefits-section {
    background-color: #F4F7FB;
    padding: 60px 0;
}

.page-cockfighting__benefits-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-cockfighting__benefits-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-cockfighting__benefit-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
    border-left: 5px solid #2F6BFF;
    transition: transform 0.3s ease;
}

.page-cockfighting__benefit-item:last-child {
    margin-bottom: 0;
}

.page-cockfighting__benefit-item span {
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-cockfighting__faq-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.page-cockfighting__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__faq-item {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__faq-question {
    display: block;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1F2D3D;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

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

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

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
    background-color: #E8EEF6;
}

.page-cockfighting__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #1F2D3D;
    border-top: 1px solid #D6E2FF;
}

.page-cockfighting__conclusion-section {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting__conclusion-section .page-cockfighting__section-title,
.page-cockfighting__conclusion-section .page-cockfighting__section-description {
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting__content-grid,
    .page-cockfighting__benefits-grid {
        flex-direction: column;
        text-align: center;
    }

    .page-cockfighting__image-wrapper {
        margin-top: 30px;
    }

    .page-cockfighting__text-content .page-cockfighting__button {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .page-cockfighting__hero-section {
        padding-bottom: 40px;
    }

    .page-cockfighting__hero-image-wrapper {
        margin-bottom: 20px;
    }

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

    .page-cockfighting__types-grid,
    .page-cockfighting__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-cockfighting__container {
        padding: 30px 15px;
    }

    .page-cockfighting__introduction-section,
    .page-cockfighting__types-section,
    .page-cockfighting__guide-section,
    .page-cockfighting__benefits-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__conclusion-section {
        padding: 40px 0;
    }

    /* Crucial: Prevent image overflow on mobile */
    .page-cockfighting__hero-image,
    .page-cockfighting__introduction-section .page-cockfighting__image,
    .page-cockfighting__types-section .page-cockfighting__type-image,
    .page-cockfighting__benefits-section .page-cockfighting__image {
        max-width: 100%;
        height: auto;
        width: auto; /* Allow image to scale down */
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }

    /* Ensure all images within .page-cockfighting do not cause horizontal scroll */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

    .page-cockfighting__benefit-item {
        padding: 15px;
    }

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

    .page-cockfighting__faq-question::after {
        right: 20px;
    }

    .page-cockfighting__faq-answer {
        padding: 10px 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-section {
        padding-bottom: 30px;
    }

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

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

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

    .page-cockfighting__section-description {
        font-size: 0.95rem;
    }

    .page-cockfighting__button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .page-cockfighting__button--hero {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .page-cockfighting__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}