/* FAQ Page Styles */
body {
    background: #f5f5f7;
    color: #1d1d1f;
    padding-top: 100px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 100px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.faq-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.faq-title {
    flex: 1;
}

.faq-header h1 {
    font-size: 56px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0;
    line-height: 1.15;
    max-width: 500px;
}

.faq-description {
    font-size: 15px;
    color: #6b7280;
    max-width: 400px;
    line-height: 1.6;
    padding-top: 40px;
}

.highlight {
    color: #2563eb;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
}

.faq-question:hover span {
    color: #2563eb;
}

.faq-chevron {
    flex-shrink: 0;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 8px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

/* Question Form Section */
.question-form-section {
    margin-top: 60px;
    padding-top: 0;
}

.question-form-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.question-prompt {
    flex: 0 0 auto;
}

.question-prompt h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 8px;
}

.question-prompt p {
    font-size: 13px;
    color: #6b7280;
}

.question-form {
    flex: 1;
    position: relative;
}

.form-input-wrapper {
    position: relative;
    background: white;
    border: 2px solid #2563eb;
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.form-icon {
    width: 40px;
    height: 40px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.form-input-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-input-container textarea {
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    color: #1d1d1f;
    resize: none;
    min-height: 60px;
    background: transparent;
}

.form-input-container textarea::placeholder {
    color: #9ca3af;
}

.form-submit {
    align-self: flex-end;
    background: transparent;
    border: none;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.2s, color 0.2s;
}

.form-submit:hover {
    color: #1e40af;
    transform: translateX(3px);
}

/* FAQ Form Feedback */
.form-submit.sent {
    color: #059669;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-section {
        padding: 40px 40px 60px;
    }

    .faq-header {
        flex-direction: column;
        gap: 20px;
    }

    .faq-header h1 {
        font-size: 42px;
    }

    .faq-description {
        padding-top: 0;
    }

    .question-form-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .faq-section {
        padding: 20px 20px 40px;
    }

    .faq-header h1 {
        font-size: 32px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .form-input-wrapper {
        padding: 20px;
        flex-direction: column;
    }
}
