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

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

.page-faq__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-faq__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-faq__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-faq__hero-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: auto;
    opacity: 0.15;
    transform: rotate(15deg);
    z-index: 0;
}

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

.page-faq__section--dark {
    background-color: #f1f7fe;
}

.page-faq__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-faq__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

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

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

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

.page-faq__accordion-header:hover {
    background-color: #dbeaff;
    color: #0056b3;
}

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

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

.page-faq__accordion-content {
    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__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    font-size: 1.05em;
}

.page-faq__content-image {
    width: 150px;
    height: auto;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

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

.page-faq__category-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.page-faq__category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-faq__category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #007bff;
}

.page-faq__category-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-faq__category-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

.page-faq__cta-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-faq__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-faq__cta-description {
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.95);
}

.page-faq__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-faq__cta-image {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 250px;
    height: auto;
    opacity: 0.1;
    transform: rotate(-10deg);
    z-index: 0;
}

.page-faq__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-faq__btn--primary {
    background-color: #fff;
    color: #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__btn--primary:hover {
    background-color: #e0e0e0;
    color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq__hero-title {
        font-size: 2.8em;
    }
    .page-faq__section-title {
        font-size: 2em;
    }
    .page-faq__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-faq__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-faq__hero {
        padding: 60px 0;
    }
    .page-faq__hero-title {
        font-size: 2.2em;
    }
    .page-faq__hero-description {
        font-size: 1.1em;
    }
    .page-faq__section {
        padding: 40px 0;
    }
    .page-faq__section-title {
        font-size: 1.8em;
    }
    .page-faq__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-faq__accordion-content p {
        font-size: 1em;
    }
    .page-faq__category-grid {
        grid-template-columns: 1fr;
    }
    .page-faq__cta-section {
        padding: 60px 0;
    }
    .page-faq__cta-title {
        font-size: 2em;
    }
    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-faq__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-faq__hero-image, .page-faq__cta-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-faq__hero-title {
        font-size: 1.8em;
    }
    .page-faq__section-title {
        font-size: 1.5em;
    }
    .page-faq__accordion-header {
        font-size: 1em;
    }
    .page-faq__cta-title {
        font-size: 1.8em;
    }
    .page-faq__btn {
        width: 90%;
    }
}