.page-cockfighting {
    background-color: #F4F7FB;
    color: #1F2D3D;
    padding-bottom: 40px;
}

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

.page-cockfighting__hero-section {
    position: relative;
    padding-top: 10px; /* Small padding to avoid overlapping with fixed header */
    background-color: #2F6BFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.page-cockfighting__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 4vw, 3.2rem); /* Responsive font size for H1 */
}

.page-cockfighting__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #D6E2FF;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

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

.page-cockfighting__text-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #1F2D3D;
    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;
    margin-bottom: 40px;
}

.page-cockfighting__feature-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    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;
    border: 1px solid #D6E2FF;
}

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

.page-cockfighting__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 10px;
}

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

.page-cockfighting__cta-area {
    text-align: center;
    margin-top: 40px;
}

.page-cockfighting__secondary-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__secondary-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.page-cockfighting__secondary-cta-button--outline {
    background: none;
    border: 2px solid #2F6BFF;
    color: #2F6BFF;
    box-shadow: none;
}

.page-cockfighting__secondary-cta-button--outline:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-cockfighting__guide-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2F6BFF;
}

.page-cockfighting__guide-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 10px;
}

.page-cockfighting__guide-step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-cockfighting__guide-step-description a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 500;
}

.page-cockfighting__guide-step-description a:hover {
    text-decoration: underline;
}

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

.page-cockfighting__faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2D3D;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-cockfighting__faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D;
    padding-top: 10px;
    border-top: 1px solid #F4F7FB;
}

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

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

    .page-cockfighting__description {
        font-size: 1rem;
    }

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

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

    .page-cockfighting__secondary-cta-button {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

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

    .page-cockfighting__hero-image {
        max-width: 100%;
        height: auto;
    }

    /* Ensure all images within .page-cockfighting are responsive */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
    }
}

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

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

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

    .page-cockfighting__secondary-cta-button {
        width: 90%;
    }
}