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

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

.page-faq-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%); /* Darker blue gradient for hero */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 10%, transparent 70%);
    animation: page-faq-rotate 20s linear infinite;
    z-index: 0;
}

@keyframes page-faq-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-faq-hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: #ffd700; /* Gold for title */
}

.page-faq-hero-title .highlight {
    color: #fff;
}

.page-faq-hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.page-faq-hero-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.page-faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.page-faq-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-faq-btn-primary {
    background-color: #ffd700; /* Gold */
    color: #0056b3; /* Dark blue */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq-btn-secondary {
    background-color: transparent;
    color: #ffd700; /* Gold */
    border: 2px solid #ffd700; /* Gold border */
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.page-faq-btn-secondary:hover {
    background-color: #ffd700;
    color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-faq-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-faq-section:last-of-type {
    border-bottom: none;
}

.page-faq-section-title {
    font-size: 2.5em;
    color: #0056b3; /* Dark blue */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-faq-section-title .highlight {
    color: #ffd700; /* Gold */
}

.page-faq-section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.page-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.page-faq-item:last-child {
    border-bottom: none;
}

.page-faq-question {
    background-color: #fcfcfc;
    color: #0056b3; /* Dark blue */
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-faq-question:hover, .page-faq-question[aria-expanded="true"] {
    background-color: #e6f0fa; /* Lighter blue for hover/active */
}

.page-faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.page-faq-question[aria-expanded="true"]::after {
    content: '-';
    transform: rotate(180deg);
}

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

.page-faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #444;
    font-size: 1em;
    line-height: 1.7;
}

.page-faq-answer img.page-faq-image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-faq-answer .page-faq-link-text {
    color: #0056b3; /* Dark blue */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-faq-answer .page-faq-link-text:hover {
    color: #003d80;
    text-decoration: underline;
}

.page-faq-conclusion {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 60px auto 40px;
    color: #555;
    padding: 0 20px;
}

.page-faq-cta-bottom {
    margin-top: 20px;
}

.page-faq-detail-pages {
    background-color: #f0f4f8;
    padding: 70px 0;
}

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

.page-faq-detail-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-faq-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-faq-detail-title {
    font-size: 1.6em;
    color: #0056b3; /* Dark blue */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-faq-detail-title a {
    text-decoration: none;
    color: inherit;
}

.page-faq-detail-title a:hover {
    color: #003d80;
}

.page-faq-detail-description {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-faq-btn-small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 6px;
    background-color: #ffd700;
    color: #0056b3;
    align-self: flex-start;
}

.page-faq-btn-small:hover {
    background-color: #e6c200;
    color: #003d80;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-faq-hero-title {
        font-size: 2.5em;
    }
    .page-faq-hero-subtitle {
        font-size: 1.2em;
    }
    .page-faq-hero-description {
        font-size: 0.95em;
    }
    .page-faq-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq-btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-faq-section-title {
        font-size: 2em;
    }
    .page-faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
    }
    .page-faq-answer p {
        padding: 12px 0;
    }
    .page-faq-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-faq-hero-title {
        font-size: 2em;
    }
    .page-faq-hero-subtitle {
        font-size: 1em;
    }
    .page-faq-hero-description {
        font-size: 0.9em;
    }
    .page-faq-btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-faq-section-title {
        font-size: 1.8em;
    }
    .page-faq-section-intro {
        font-size: 0.9em;
    }
    .page-faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-faq-answer p {
        font-size: 0.9em;
    }
}