/* style/resources-kc88-faq.css */

.page-resources-kc88-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.page-resources-kc88-faq__hero {
    background: linear-gradient(135deg, #1A2E47 0%, #3a5c8a 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-resources-kc88-faq__hero-content {
    z-index: 1;
    max-width: 900px;
}

.page-resources-kc88-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-kc88-faq__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-resources-kc88-faq__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E47; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-resources-kc88-faq__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-kc88-faq__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    z-index: 1;
}

.page-resources-kc88-faq__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.page-resources-kc88-faq__content {
    padding: 60px 20px;
    background-color: #f8f9fa; /* Light background for content */
}

.page-resources-kc88-faq__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-resources-kc88-faq__section-title {
    font-size: 2.5em;
    color: #1A2E47; /* Dark blue title */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-resources-kc88-faq__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Accordion Styling */
.page-resources-kc88-faq__accordion-group {
    margin-top: 40px;
}

.page-resources-kc88-faq__accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-kc88-faq__accordion-header {
    font-size: 1.3em;
    color: #1A2E47; /* Dark blue header */
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: #f0f4f7; /* Slightly lighter blue background */
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.page-resources-kc88-faq__accordion-header:hover {
    background-color: #e0e5ea;
}

.page-resources-kc88-faq__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
}

.page-resources-kc88-faq__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-kc88-faq__accordion-content {
    padding: 25px;
    border-top: 1px solid #eee;
    display: none;
    color: #444;
    font-size: 1.05em;
    background-color: #FFFFFF;
}

.page-resources-kc88-faq__accordion-content p {
    margin-bottom: 15px;
}

.page-resources-kc88-faq__accordion-content ol,
.page-resources-kc88-faq__accordion-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-resources-kc88-faq__accordion-content li {
    margin-bottom: 8px;
}

.page-resources-kc88-faq__accordion-content a {
    color: #1A2E47; /* Dark blue link */
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-kc88-faq__accordion-content a:hover {
    color: #FFD700; /* Gold on hover */
}

.page-resources-kc88-faq__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-kc88-faq__cta-button {
    display: inline-block;
    background-color: #1A2E47; /* Dark blue button */
    color: #FFD700; /* Gold text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-kc88-faq__cta-button:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A2E47; /* Dark blue text on hover */
}

/* Closing CTA */
.page-resources-kc88-faq__closing-cta {
    background-color: #1A2E47; /* Dark blue background */
    color: #FFFFFF;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
}

.page-resources-kc88-faq__closing-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
}

.page-resources-kc88-faq__closing-text {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

.page-resources-kc88-faq__closing-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-kc88-faq__closing-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-resources-kc88-faq__closing-button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E47; /* Dark blue text */
}

.page-resources-kc88-faq__closing-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-kc88-faq__closing-button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border-color: #FFD700; /* Gold border */
}

.page-resources-kc88-faq__closing-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-kc88-faq__hero {
        padding: 60px 20px;
    }

    .page-resources-kc88-faq__hero-title {
        font-size: 2.8em;
    }

    .page-resources-kc88-faq__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-kc88-faq__section-title {
        font-size: 2em;
    }

    .page-resources-kc88-faq__accordion-header {
        font-size: 1.2em;
        padding: 18px 20px;
    }

    .page-resources-kc88-faq__accordion-content {
        padding: 20px;
    }

    .page-resources-kc88-faq__closing-title {
        font-size: 2em;
    }

    .page-resources-kc88-faq__closing-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-resources-kc88-faq__hero {
        flex-direction: column;
        padding: 50px 15px;
    }

    .page-resources-kc88-faq__hero-title {
        font-size: 2.2em;
    }

    .page-resources-kc88-faq__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-kc88-faq__hero-image-wrapper {
        margin-top: 30px;
    }

    .page-resources-kc88-faq__content {
        padding: 40px 15px;
    }

    .page-resources-kc88-faq__section-title {
        font-size: 1.8em;
    }

    .page-resources-kc88-faq__intro-text {
        font-size: 0.95em;
    }

    .page-resources-kc88-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-resources-kc88-faq__accordion-content {
        font-size: 0.95em;
        padding: 15px;
    }

    .page-resources-kc88-faq__closing-title {
        font-size: 1.8em;
    }

    .page-resources-kc88-faq__closing-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-kc88-faq__closing-button {
        width: 100%;
        max-width: 280px;
    }
}

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

    .page-resources-kc88-faq__hero-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-resources-kc88-faq__section-title {
        font-size: 1.5em;
    }

    .page-resources-kc88-faq__accordion-header {
        font-size: 1em;
        padding: 12px;
    }

    .page-resources-kc88-faq__accordion-content {
        font-size: 0.9em;
        padding: 12px;
    }

    .page-resources-kc88-faq__closing-title {
        font-size: 1.5em;
    }
}