.faq {
    padding: 80px 0;
    background: #f8f8f8;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #0099B0;
    line-height: 1.5;
    margin-bottom: 5px;
}

.faq-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.faq-q {
    color: #0099B0;
    font-size: 24px;
    font-weight: 700;
    margin-right: 15px;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
}

.faq-icon {
    font-size: 24px;
    color: #0099B0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 60px;
    display: none;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-q {
        font-size: 20px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 20px 50px;
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .faq-title {
        font-size: 22px;
        line-height: 1.6;
    }

    .faq-subtitle {
        font-size: 13px;
    }
} 