/* style/resources-mcw-cockfighting-faq.css */

.page-resources-mcw-cockfighting-faq {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Primary dark background */
}

.page-resources-mcw-cockfighting-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-mcw-cockfighting-faq__article-width {
    max-width: 800px;
}

.page-resources-mcw-cockfighting-faq__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #3a0e0e 100%); /* Dark blue to slightly reddish dark for intensity */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold text for hero */
    position: relative;
    overflow: hidden;
}

.page-resources-mcw-cockfighting-faq__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-mcw-cockfighting-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f5e6d0;
}

.page-resources-mcw-cockfighting-faq__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary gold */
    color: #0A192F; /* Dark text for gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-mcw-cockfighting-faq__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-mcw-cockfighting-faq__content-section {
    padding: 60px 0;
    background-color: #0A192F; /* Primary dark background */
}

.page-resources-mcw-cockfighting-faq__intro-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: justify;
    color: #c0c0c0;
}

.page-resources-mcw-cockfighting-faq__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-mcw-cockfighting-faq__faq-list {
    margin-top: 30px;
}

.page-resources-mcw-cockfighting-faq__faq-item {
    background-color: #1a2a40; /* Slightly lighter dark blue for FAQ item */
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-mcw-cockfighting-faq__faq-question {
    padding: 20px 25px;
    cursor: pointer;
    background-color: #2a3d54; /* Even lighter dark blue for question header */
    color: #FFD700; /* Gold text */
    font-size: 1.3em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-resources-mcw-cockfighting-faq__faq-question:hover {
    background-color: #3a4d64;
}

.page-resources-mcw-cockfighting-faq__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-mcw-cockfighting-faq__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-mcw-cockfighting-faq__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #c0c0c0; /* Lighter grey for answer text */
}

.page-resources-mcw-cockfighting-faq__faq-answer.open {
    max-height: 1000px; /* Adjust as needed for content length */
    padding: 20px 25px;
}

.page-resources-mcw-cockfighting-faq__faq-answer p {
    margin-bottom: 15px;
    font-size: 1em;
}

.page-resources-mcw-cockfighting-faq__faq-answer ol,
.page-resources-mcw-cockfighting-faq__faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-resources-mcw-cockfighting-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-resources-mcw-cockfighting-faq__faq-answer a {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-mcw-cockfighting-faq__faq-answer a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-resources-mcw-cockfighting-faq__inline-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary gold */
    color: #0A192F; /* Dark text for gold button */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

.page-resources-mcw-cockfighting-faq__inline-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-mcw-cockfighting-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-mcw-cockfighting-faq__call-to-action-bottom {
    text-align: center;
    background-color: #1a2a40;
    padding: 40px 30px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-resources-mcw-cockfighting-faq__call-to-action-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-mcw-cockfighting-faq__call-to-action-text {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 30px;
}

.page-resources-mcw-cockfighting-faq__mt-20 {
    margin-top: 20px;
}

.page-resources-mcw-cockfighting-faq__back-link-container {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-mcw-cockfighting-faq__back-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-mcw-cockfighting-faq__back-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-mcw-cockfighting-faq__hero-title {
        font-size: 2em;
    }

    .page-resources-mcw-cockfighting-faq__hero-description {
        font-size: 1em;
    }

    .page-resources-mcw-cockfighting-faq__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-mcw-cockfighting-faq__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-mcw-cockfighting-faq__faq-answer {
        padding: 15px 20px;
    }

    .page-resources-mcw-cockfighting-faq__call-to-action-title {
        font-size: 1.6em;
    }

    .page-resources-mcw-cockfighting-faq__call-to-action-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-mcw-cockfighting-faq__hero-title {
        font-size: 1.8em;
    }

    .page-resources-mcw-cockfighting-faq__hero-description {
        font-size: 0.9em;
    }

    .page-resources-mcw-cockfighting-faq__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-mcw-cockfighting-faq__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-resources-mcw-cockfighting-faq__faq-answer {
        padding: 12px 15px;
    }

    .page-resources-mcw-cockfighting-faq__call-to-action-title {
        font-size: 1.4em;
    }

    .page-resources-mcw-cockfighting-faq__call-to-action-text {
        font-size: 0.9em;
    }

    .page-resources-mcw-cockfighting-faq__container {
        padding: 0 15px;
    }
}