.questions {
    padding: 100px 0;
    min-height: auto;
}

.questions .section-content {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.questions h2 {
    width: 430px;
    color: #000000;
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin: 0;
    text-align: left;
    word-break: break-word;
}

.faq-container {
    width: 920px;
    overflow-x: hidden;
    margin-left: auto;
}

.faq-question {
    border-bottom: 2px solid #85858550;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.25s ease;
    font-family: 'SF-Pro', 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    color: #000000;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-question-text {
    flex: 1;
    pointer-events: none;
}

.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #3b3b3b;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 20px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 20px;
}

.faq-input:checked + .faq-question .faq-icon {
    transform: rotate(135deg);
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-input:checked ~ .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
}

.faq-answer-inner {
    padding: 15px 0 20px;
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.faq-input:checked ~ .faq-answer-wrapper .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.faq-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    visibility: hidden;
}

@media (max-width: 1200px) {
    .questions .section-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }
    .questions h2 {
        width: auto;
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 30px;
        text-align: center;
    }
    .faq-container {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px 0;
        font-size: 17px;
    }
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    .faq-icon::before { width: 14px; }
    .faq-icon::after { height: 14px; }
    .faq-answer-inner {
        font-size: 15px;
        padding-bottom: 18px;
    }
}