/* style/resources-ku77-faq.css */
.page-resources-ku77-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-resources-ku77-faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-ku77-faq .hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #3f479d 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-ku77-faq .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-ku77-faq .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-ku77-faq .hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Buttons */
.page-resources-ku77-faq .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
}

.page-resources-ku77-faq .btn-primary {
    background-color: #FFD700; /* Gold */
    color: #1A237E; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-resources-ku77-faq .btn-primary:hover {
    background-color: #e5c100;
    border-color: #e5c100;
    transform: translateY(-2px);
}

.page-resources-ku77-faq .btn-secondary {
    background-color: #1A237E; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-resources-ku77-faq .btn-secondary:hover {
    background-color: #0f175e;
    border-color: #e5c100;
    transform: translateY(-2px);
}

.page-resources-ku77-faq .btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* FAQ Section */
.page-resources-ku77-faq .faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-resources-ku77-faq .section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-resources-ku77-faq .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-resources-ku77-faq .faq-list {
    margin-bottom: 40px;
}

.page-resources-ku77-faq .faq-item {
    background-color: #f4f4f4;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.page-resources-ku77-faq .faq-question {
    font-size: 1.3em;
    color: #1A237E;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0e0e0;
    border-bottom: 1px solid #d0d0d0;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-resources-ku77-faq .faq-question:hover {
    background-color: #d3d3d3;
}

.page-resources-ku77-faq .faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    color: #1A237E;
    transition: transform 0.3s ease;
}

.page-resources-ku77-faq .faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for '-' */
}

.page-resources-ku77-faq .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #ffffff;
    color: #444;
}

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

.page-resources-ku77-faq .faq-answer p {
    margin-bottom: 15px;
}

.page-resources-ku77-faq .faq-answer ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.page-resources-ku77-faq .faq-answer ul li {
    margin-bottom: 8px;
}

.page-resources-ku77-faq .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-ku77-faq .image-wrapper {
    text-align: center;
    margin: 25px 0;
}

/* CTA Banner */
.page-resources-ku77-faq .cta-banner {
    background: #1A237E;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-ku77-faq .cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-resources-ku77-faq .cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-ku77-faq .hero-title {
        font-size: 2.5em;
    }

    .page-resources-ku77-faq .hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-ku77-faq .section-title {
        font-size: 2em;
    }

    .page-resources-ku77-faq .faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-resources-ku77-faq .faq-answer {
        padding: 15px 20px;
    }

    .page-resources-ku77-faq .cta-title {
        font-size: 2em;
    }

    .page-resources-ku77-faq .cta-description {
        font-size: 1.1em;
    }

    .page-resources-ku77-faq .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-ku77-faq .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-ku77-faq .hero-title {
        font-size: 2em;
    }

    .page-resources-ku77-faq .hero-subtitle {
        font-size: 1em;
    }

    .page-resources-ku77-faq .section-title {
        font-size: 1.8em;
    }

    .page-resources-ku77-faq .faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-resources-ku77-faq .faq-answer {
        padding: 12px 15px;
    }

    .page-resources-ku77-faq .cta-title {
        font-size: 1.8em;
    }

    .page-resources-ku77-faq .cta-description {
        font-size: 1em;
    }

    .page-resources-ku77-faq .btn-large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}