/* style/resources-b52-club-faq-deep-dive.css */
.page-resources-b52-club-faq-deep-dive {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0d123b; /* Darker blue background for content */
}

.page-resources-b52-club-faq-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-b52-club-faq-deep-dive__hero-section {
    background: linear-gradient(135deg, #1A237E, #0028ff); /* Dark blue to a slightly brighter blue for depth */
    color: #FFD700; /* Golden text for hero title */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-b52-club-faq-deep-dive__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700; /* Golden for prominence */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-b52-club-faq-deep-dive__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-b52-club-faq-deep-dive__content-section {
    padding: 60px 0;
    background-color: #0d123b; /* Consistent dark background */
}

.page-resources-b52-club-faq-deep-dive__intro-text {
    background-color: #1A237E; /* Main brand color for intro box */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #f0f0f0;
}

.page-resources-b52-club-faq-deep-dive__intro-text p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-resources-b52-club-faq-deep-dive__faq-list {
    display: grid;
    gap: 30px;
}

.page-resources-b52-club-faq-deep-dive__faq-item {
    background-color: #1A237E; /* Main brand color for FAQ items */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-b52-club-faq-deep-dive__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-b52-club-faq-deep-dive__faq-question {
    font-size: 1.8em;
    color: #FFD700; /* Golden for questions */
    margin-bottom: 20px;
    border-bottom: 2px solid #5f65a5; /* Lighter blue for subtle separation */
    padding-bottom: 10px;
}

.page-resources-b52-club-faq-deep-dive__faq-answer {
    font-size: 1.05em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-resources-b52-club-faq-deep-dive__faq-answer p {
    margin-bottom: 15px;
}

.page-resources-b52-club-faq-deep-dive__faq-answer h3 {
    font-size: 1.4em;
    color: #FFD700; /* Golden for sub-headings */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-resources-b52-club-faq-deep-dive__faq-answer ol,
.page-resources-b52-club-faq-deep-dive__faq-answer ul {
    margin-left: 25px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.page-resources-b52-club-faq-deep-dive__faq-answer ol {
    list-style-type: decimal;
}

.page-resources-b52-club-faq-deep-dive__faq-answer li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.page-resources-b52-club-faq-deep-dive__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-b52-club-faq-deep-dive__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    font-size: 1.1em;
}

.page-resources-b52-club-faq-deep-dive__btn--primary {
    background-color: #FFD700; /* Golden primary button */
    color: #1A237E; /* Dark blue text on golden button */
    border: 2px solid #FFD700;
}

.page-resources-b52-club-faq-deep-dive__btn--primary:hover {
    background-color: #e5c100; /* Slightly darker golden on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-club-faq-deep-dive__btn--secondary {
    background-color: #1A237E; /* Dark blue secondary button */
    color: #FFD700; /* Golden text on dark blue button */
    border: 2px solid #FFD700;
}

.page-resources-b52-club-faq-deep-dive__btn--secondary:hover {
    background-color: #0d123b; /* Even darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-club-faq-deep-dive__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-club-faq-deep-dive__image-inline {
    width: 80%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-b52-club-faq-deep-dive__call-to-action {
    text-align: center;
    background-color: #1A237E;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-b52-club-faq-deep-dive__call-to-action p {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-b52-club-faq-deep-dive__hero-title {
        font-size: 2.5em;
    }
    .page-resources-b52-club-faq-deep-dive__hero-subtitle {
        font-size: 1.2em;
    }
    .page-resources-b52-club-faq-deep-dive__faq-question {
        font-size: 1.5em;
    }
    .page-resources-b52-club-faq-deep-dive__faq-answer h3 {
        font-size: 1.2em;
    }
    .page-resources-b52-club-faq-deep-dive__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-resources-b52-club-faq-deep-dive__image-inline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-resources-b52-club-faq-deep-dive__hero-title {
        font-size: 2em;
    }
    .page-resources-b52-club-faq-deep-dive__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-b52-club-faq-deep-dive__faq-question {
        font-size: 1.3em;
    }
    .page-resources-b52-club-faq-deep-dive__faq-answer {
        font-size: 0.95em;
    }
    .page-resources-b52-club-faq-deep-dive__call-to-action p {
        font-size: 1.1em;
    }
    .page-resources-b52-club-faq-deep-dive__intro-text,
    .page-resources-b52-club-faq-deep-dive__faq-item,
    .page-resources-b52-club-faq-deep-dive__call-to-action {
        padding: 20px;
    }
}