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

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

.page-faq__hero {
    background: linear-gradient(135deg, #1A2B5B 0%, #3a4c7c 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-faq__hero > .page-faq__container {
    position: relative;
    z-index: 1;
}

.page-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
}

.page-faq__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-faq__hero-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B5B;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__hero-btn:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-faq__section {
    padding: 60px 0;
}

.page-faq__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #1A2B5B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-faq__section-subtitle {
    font-size: 1.1em;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
}

.page-faq__highlight {
    color: #FFD700;
}

.page-faq__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #444;
}

.page-faq__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-faq__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-faq__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-faq__card-title {
    font-size: 1.6em;
    color: #1A2B5B;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq__card-title a {
    text-decoration: none;
    color: #1A2B5B;
    transition: color 0.3s ease;
}

.page-faq__card-title a:hover {
    color: #FFD700;
}

.page-faq__card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-faq__card-btn {
    display: inline-block;
    background-color: #1A2B5B;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq__card-btn:hover {
    background-color: #FFD700;
    color: #1A2B5B;
    transform: translateY(-2px);
}

.page-faq__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq__accordion-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-faq__accordion-header {
    background-color: #1A2B5B;
    color: #fff;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
    background-color: #2c427a;
}

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

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

.page-faq__accordion-content {
    padding: 0 25px;
    background-color: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    font-size: 1em;
}

.page-faq__accordion-content ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-bottom: 15px;
    color: #555;
}

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

.page-faq__accordion-content a {
    color: #1A2B5B;
    text-decoration: underline;
}

.page-faq__accordion-content a:hover {
    color: #FFD700;
}

.page-faq__cta-inline {
    text-align: center;
    margin: 20px 0;
}

.page-faq__btn-small {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B5B;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-faq__btn-small:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq__cta {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
    padding: 80px 0;
    text-align: center;
    color: #1A2B5B;
    position: relative;
    overflow: hidden;
}

.page-faq__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,gold_light]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-faq__cta > .page-faq__container {
    position: relative;
    z-index: 1;
}

.page-faq__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #1A2B5B;
}

.page-faq__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333;
}

.page-faq__cta-btn {
    display: inline-block;
    background-color: #1A2B5B;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-faq__cta-btn:hover {
    background-color: #0d1a3b;
    transform: translateY(-5px);
}

.page-faq__cta-subtext {
    margin-top: 25px;
    font-size: 1em;
    color: #555;
}

.page-faq__cta-subtext a {
    color: #1A2B5B;
    text-decoration: underline;
    font-weight: bold;
}

.page-faq__cta-subtext a:hover {
    color: #0d1a3b;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-faq__hero-title {
        font-size: 2.8em;
    }
    .page-faq__section-title {
        font-size: 2em;
    }
    .page-faq__card-title {
        font-size: 1.4em;
    }
    .page-faq__accordion-header {
        font-size: 1.1em;
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .page-faq__hero {
        padding: 60px 0;
    }
    .page-faq__hero-title {
        font-size: 2.4em;
    }
    .page-faq__hero-description {
        font-size: 1.1em;
    }
    .page-faq__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-faq__section {
        padding: 40px 0;
    }
    .page-faq__section-title {
        font-size: 1.8em;
    }
    .page-faq__grid {
        grid-template-columns: 1fr;
    }
    .page-faq__card {
        padding: 25px;
    }
    .page-faq__card-title {
        font-size: 1.3em;
    }
    .page-faq__cta-title {
        font-size: 2.2em;
    }
    .page-faq__cta-description {
        font-size: 1.1em;
    }
    .page-faq__cta-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-faq__hero {
        padding: 40px 0;
    }
    .page-faq__hero-title {
        font-size: 2em;
    }
    .page-faq__hero-description {
        font-size: 1em;
    }
    .page-faq__hero-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-faq__section-title {
        font-size: 1.6em;
    }
    .page-faq__accordion-header {
        font-size: 1em;
        padding: 15px 18px;
    }
    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}