.env-faqs {
    padding: 100px 0;
    background: #fff;
}

.env-faqs__content {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 50px;
}

.env-faqs__title-container {
    position: sticky;
    top: 120px;
    align-self: start;
    display: flex;
    flex-direction: column;
}

.env-faqs__label {
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.env-faqs__title {
    margin: 15px 0 0;
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
}

.env-faqs__list-container {
    display: flex;
    justify-content: flex-end;
}

.env-faqs__list {
    width: 100%;
    max-width: 730px;
}

.env-faqs__item {
    border-bottom: 1px solid #e8e4e5;
}

.env-faqs__item:last-child {
    border-bottom-color: transparent;
}

.env-faqs__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    padding: 24px 0;
    background: none;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.env-faqs__question {
    color: rgba(13, 9, 10, 0.7);
    font-family: var(--font-aeonik);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
}

.env-faqs__icon {
    flex-shrink: 0;
    color: rgba(13, 9, 10, 0.7);
}

.env-faqs__answer {
    overflow: hidden;
}

.env-faqs__answer-inner {
    padding-bottom: 24px;
    color: rgba(13, 9, 10, 0.72);
    font-family: var(--font-inter);
    font-size: 16px;
    line-height: 1.7;
}

.env-faqs__answer-inner p:last-child {
    margin-bottom: 0;
}

.env-faqs__answer-link {
    color: #f25d21;
    font-weight: 600;
    text-decoration: none;
}

.env-faqs__answer-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .env-faqs__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .env-faqs__title-container {
        position: static;
    }

    .env-faqs__list-container {
        justify-content: flex-start;
    }

    .env-faqs__list {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .env-faqs {
        padding: 60px 0;
    }

    .env-faqs__title {
        font-size: 2rem;
    }
}
