/* style/resources-b29-club-security-legality.css */

/* Base styles for the page */
.page-resources-b29-club-security-legality {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #1A2E47; /* Main dark blue background */
    line-height: 1.6;
}

.page-resources-b29-club-security-legality__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-b29-club-security-legality__hero {
    background: linear-gradient(135deg, #1A2E47, #3A5F8C); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-resources-b29-club-security-legality__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,lines,subtle]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-b29-club-security-legality__hero > .page-resources-b29-club-security-legality__container {
    position: relative;
    z-index: 1;
}

.page-resources-b29-club-security-legality__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent for title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-b29-club-security-legality__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

/* General Section Styles */
.page-resources-b29-club-security-legality__content-section {
    padding: 60px 0;
    background-color: #1A2E47;
}

.page-resources-b29-club-security-legality__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-b29-club-security-legality__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-resources-b29-club-security-legality__text-block {
    background-color: #2A4465; /* Slightly lighter dark blue for content blocks */
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-b29-club-security-legality__text-block p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: #E0E0E0;
}

.page-resources-b29-club-security-legality__text-block h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold accent for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-resources-b29-club-security-legality__text-block ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    color: #E0E0E0;
}

.page-resources-b29-club-security-legality__text-block li {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.page-resources-b29-club-security-legality__image-inline {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-resources-b29-club-security-legality__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-resources-b29-club-security-legality__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2E47; /* Dark blue text */
    font-size: 1.1em;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-b29-club-security-legality__btn--primary:hover {
    background-color: #E6C200; /* Darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-b29-club-security-legality__btn--secondary {
    background-color: #1A2E47; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    font-size: 1em;
}

.page-resources-b29-club-security-legality__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* FAQ Section */
.page-resources-b29-club-security-legality__faq-section {
    margin-top: 50px;
    background-color: #2A4465;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-b29-club-security-legality__faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 20px;
}

.page-resources-b29-club-security-legality__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-resources-b29-club-security-legality__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.page-resources-b29-club-security-legality__faq-question:hover {
    color: #E6C200;
}

.page-resources-b29-club-security-legality__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-b29-club-security-legality__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-b29-club-security-legality__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    padding-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-resources-b29-club-security-legality__faq-answer.active {
    max-height: 300px; /* Adjust based on content */
}

.page-resources-b29-club-security-legality__faq-answer p {
    margin-bottom: 1em;
}

.page-resources-b29-club-security-legality__faq-answer .page-resources-b29-club-security-legality__btn {
    margin-top: 15px;
}

/* CTA Banner */
.page-resources-b29-club-security-legality__cta-banner {
    background-color: #2A4465;
    border-radius: 10px;
    padding: 40px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-b29-club-security-legality__cta-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-resources-b29-club-security-legality__cta-content {
    flex-grow: 1;
}

.page-resources-b29-club-security-legality__cta-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-b29-club-security-legality__cta-description {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 25px;
}

/* Floating CTA Button */
.page-resources-b29-club-security-legality__floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.page-resources-b29-club-security-legality__floating-btn {
    background-color: #FFD700;
    color: #1A2E47;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.page-resources-b29-club-security-legality__floating-btn:hover {
    background-color: #E6C200;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.page-resources-b29-club-security-legality__floating-icon {
    width: 24px;
    height: 24px;
    fill: #1A2E47;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-b29-club-security-legality__hero-title {
        font-size: 2.8em;
    }

    .page-resources-b29-club-security-legality__hero-subtitle {
        font-size: 1.3em;
    }

    .page-resources-b29-club-security-legality__section-title {
        font-size: 2em;
    }

    .page-resources-b29-club-security-legality__text-block h3 {
        font-size: 1.5em;
    }

    .page-resources-b29-club-security-legality__cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .page-resources-b29-club-security-legality__cta-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-resources-b29-club-security-legality__hero {
        padding: 80px 0;
    }

    .page-resources-b29-club-security-legality__hero-title {
        font-size: 2.2em;
    }

    .page-resources-b29-club-security-legality__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-b29-club-security-legality__section-title {
        font-size: 1.8em;
    }

    .page-resources-b29-club-security-legality__text-block p,
    .page-resources-b29-club-security-legality__text-block li,
    .page-resources-b29-club-security-legality__faq-answer {
        font-size: 1em;
    }

    .page-resources-b29-club-security-legality__faq-question {
        font-size: 1.2em;
    }

    .page-resources-b29-club-security-legality__cta-title {
        font-size: 1.6em;
    }

    .page-resources-b29-club-security-legality__cta-description {
        font-size: 1em;
    }

    .page-resources-b29-club-security-legality__floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .page-resources-b29-club-security-legality__floating-btn {
        padding: 10px 15px;
        font-size: 1em;
    }

    .page-resources-b29-club-security-legality__floating-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .page-resources-b29-club-security-legality__hero {
        padding: 60px 0;
    }

    .page-resources-b29-club-security-legality__hero-title {
        font-size: 1.8em;
    }

    .page-resources-b29-club-security-legality__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-b29-club-security-legality__btn--primary,
    .page-resources-b29-club-security-legality__btn--secondary {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .page-resources-b29-club-security-legality__section-title {
        font-size: 1.5em;
    }

    .page-resources-b29-club-security-legality__text-block {
        padding: 20px;
    }

    .page-resources-b29-club-security-legality__text-block h3 {
        font-size: 1.3em;
    }

    .page-resources-b29-club-security-legality__cta-banner {
        padding: 30px 20px;
    }

    .page-resources-b29-club-security-legality__cta-title {
        font-size: 1.4em;
    }

    .page-resources-b29-club-security-legality__floating-cta {
        bottom: 15px;
        right: 15px;
    }
}