.pc-faqs {
    padding: 100px 0;
    background: #fff;
}

.pc-faqs__content {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 50px;
}

.pc-faqs__title-container {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 120px;
    align-self: start;
}

.pc-faqs__label {
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.pc-faqs__title {
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 15px 0 0 0;
}

.pc-faqs__list-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.pc-faqs__list {
    display: flex;
    flex-direction: column;
    max-width: 730px;
    width: 100%;
}

.pc-faqs__item {
    border-bottom: 1px solid #e8e4e5;
}

.pc-faqs__item:last-of-type {
    border-bottom: 1px solid transparent;
}

.pc-faqs__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.pc-faqs__question {
    font-family: var(--font-aeonik);
    color: rgba(13, 9, 10, 0.7);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
}

.pc-faqs__question p {
    margin: 0;
}

.pc-faqs__icon {
    color: rgba(13, 9, 10, 0.7);
    flex-shrink: 0;
}

.pc-faqs__answer {
    overflow: hidden;
}

.pc-faqs__answer-inner {
    padding-bottom: 24px;
    font-family: var(--font-aeonik);
    color: rgba(13, 9, 10, 0.7);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.pc-faqs__answer-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .pc-faqs__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pc-faqs__title-container {
        position: static;
    }

    .pc-faqs__list-container {
        justify-content: flex-start;
    }

    .pc-faqs__list {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pc-faqs {
        padding: 60px 0;
    }

    .pc-faqs__title {
        font-size: 2rem;
    }
}
