

.container {
    max-width: 760px;
    margin: 0 auto;
}

section {
    margin-bottom: 100px;
}

section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8b84b;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.row:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.row-info p:first-child {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.row-info p:last-child {
    font-size: 0.85rem;
    font-weight: 300;
    color: #999;
}

.price {
    font-weight: 700;
    white-space: nowrap;
}

.badge {
    background: #7c3aed;
    border-radius: 50px;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #f3eeff;
    margin-top: 20px;
}

.badge strong {
    font-weight: 700;
}

.note {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    font-style: italic;
    line-height: 1.7;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 150px;
}

@media (max-width: 480px) {
    .row {
        flex-direction: column;
        gap: 6px;
    }
}