.section {
    display: flex;
    gap: 32px;
    align-items: center;
}

#pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-box {
    background-color: var(--black-100);
    border-radius: 8px;
    color: white;
    padding: 48px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 64px;
}

#pricing-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.selector-group {
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

#price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.price-value {
    font-weight: 600;
    background-color: var(--tangerine-100);
    padding: 4px 8px;
    color: var(--gray-20);
    border-radius: 8px;
    font-size: 18px;
    margin-right: 4px;
}

.price-note {
    align-self: flex-end;
    font-size: 14px;
    opacity: 0.6;
    color: white;
}

.features-list {
    margin-top: 32px;
}

.actions {
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

#price-display span[data-show="false"] {
    display: none;
}

.pricing-free-trial {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.pricing-free-trial > div:last-child {
    font-size: 13px;
    padding-right: 16px;
    margin-top: 4px;
}
