.page-cockfighting {
    color: #1F2D3D;
    background-color: #F4F7FB;
}

.page-cockfighting__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding as per rule */
    background-color: #F4F7FB;
    position: relative;
    overflow: hidden;
}

.page-cockfighting__hero-image {
    width: 100%;
    max-width: 1200px; /* Constrain hero image width */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
}

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

.page-cockfighting__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-cockfighting__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 30px;
}

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

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

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

.page-cockfighting__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-cockfighting__introduction-section .page-cockfighting__text-content {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    color: #1F2D3D;
}

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

.page-cockfighting__feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

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

.page-cockfighting__feature-image {
    width: 100%;
    max-width: 400px; /* Recommended content image size */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__feature-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-cockfighting__feature-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-cockfighting__cta-button--bottom {
    margin-top: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: guide-step;
}

.page-cockfighting__guide-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #D6E2FF;
    position: relative;
    padding-left: 70px; /* Space for step number */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-cockfighting__guide-item::before {
    counter-increment: guide-step;
    content: "Bước " counter(guide-step);
    position: absolute;
    left: 25px;
    top: 25px;
    font-weight: 700;
    color: #2F6BFF;
    font-size: 1.1em;
}

.page-cockfighting__guide-step-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.page-cockfighting__guide-text {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-cockfighting__faq-section {
    background-color: #F4F7FB;
}

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

.page-cockfighting__faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.page-cockfighting__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-image {
        max-width: 100%;
    }
}

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

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

    .page-cockfighting__hero-content {
        padding: 0 15px 30px;
    }

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

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

    /* Ensure all images in content areas are responsive and don't overflow */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
    }

    .page-cockfighting__hero-image {
        height: auto;
    }

    .page-cockfighting__feature-image {
        height: auto;
    }

    .page-cockfighting__guide-item {
        padding-left: 25px; /* Adjust for smaller screens */
    }

    .page-cockfighting__guide-item::before {
        position: static;
        display: block;
        margin-bottom: 10px;
        text-align: left;
    }

    .page-cockfighting__feature-card, .page-cockfighting__guide-item, .page-cockfighting__faq-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }

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

    .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}