.faq {
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
    gap: 20px;
}
.faq-container {
    width: 50%;
}
.faq-container.full-text {
    width: 100%;
}
.faq-details {
    margin-bottom: 1.5rem;
}
.faq-details h1 {
    padding-bottom: 1rem;
}
.faq-details p {
    font-size: 24px;
    font-weight: 100;
}
.faq-box {
    position: relative;
}
.faq-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-clr);
    border-radius: 50px;
}
.faq-btn {
    position: relative;
    font-size: 24px;
    background-color: transparent;
    border: 0;
    outline: 0;
    padding: 30px 0;
    padding-left: 50px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    text-align: start;
}
.faq-text {
    font-size: 20px;
    padding-bottom: 0;
    height: 0;
    opacity: 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding-left: 50px;
    will-change: height, opacity;
}
.faq-text ul {
    list-style-type: none !important;
    padding-left: 0 !important;
}
.faq-text li {
    padding: .5rem 0;
}
.faq-text.active {
    padding-bottom: 20px;
    opacity: 1;
}

.faq-paragraph {
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-text.active .faq-paragraph {
    transform: translateY(0);
}

.faq-text p {
    width: 100%;
}
.faq-btn::after,
.faq-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 16px;
    height: 2.5px;
    background-color: var(--text-clr);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.4s ease;
    border-radius: 2px;
}

.faq-btn::after {
    transform: translateY(-50%) rotate(90deg); /* Vertical bar */
}

.faq-btn::before {
    transform: translateY(-50%) rotate(0deg); /* Horizontal bar */
}

/* Icon Animation on Active */
.faq-btn.active::after {
    transform: translateY(-50%) rotate(180deg); /* Collapses into horizontal */
    background-color: #2aa175; /* Primary accent color */
}

.faq-btn.active::before {
    transform: translateY(-50%) rotate(180deg);
    background-color: #2aa175;
}
#faq-obj {
    width: 50%;
    color: var(--hr-secondary);
    font-weight: bold;
    font-size: 12rem;
    line-height: 0.9rem;
    letter-spacing: 2px;
    text-align: center;
    transform: rotate(-20deg) skew(25deg);
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    pointer-events: none;
    opacity: .9;
}
