.terms-page {
    font-family: 'At Aero TRIAL', sans-serif;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.terms-hero {
    position: relative;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 0;
    padding: 0;
}


.terms-title {
    margin: 0 10% 0;
    padding: 0;
    font-family: 'At Aero TRIAL Retina';
    font-size: 48px;
    color: #e6421d;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 1;
}

.terms-title .span {
    color: #fff;
    white-space: nowrap;
}

.terms-divider {
    height: 2px;
    background: linear-gradient(90deg, #e6421d, rgba(0, 0, 0, 0));
    width: 100%;
    margin-bottom: 40px;
}

.terms-section-title {
    font-size: 24px;
    line-height: 32px;
    display: inline-block;
    color: #fff;
}

.terms-content {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.terms-welcome {
    margin-bottom: 40px;
}

.terms-updated {
    font-size: 0.75em;
    font-weight: normal;
    display: block;
    margin-top: 8px;
}

.terms-block {
    font-family: 'At Aero TRIAL';
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
}

.terms-block h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
    margin-top: 8px;
    color: #e6421d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #333;
    padding-bottom: 12px;
}

.terms-block h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
    font-size: 17px;
    padding-left: 12px;
    border-left: 3px solid #e6421d;
}

.terms-block ul {
    padding-left: 24px;
    list-style: disc;
    color: #d0d0d0;
    font-size: 16px;
    font-weight: normal;
    margin: 16px 0 0 0;
    line-height: 28px;
}

.terms-list-item {
    margin-bottom: 8px;
}

.terms-block p {
    color: #d0d0d0;
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 12px 0;
    line-height: 28px;
}

.terms-block-extra {
    margin-top: 12px;
    font-size: 0.95em;
    color: #d0d0d0;
    line-height: 24px;
}

.terms-acknowledgement {
    margin-top: 32px;
    padding: 24px;
    background-color: #1a1a1a;
    border-left: 4px solid #e6421d;
    border-radius: 4px;
    font-style: italic;
    font-weight: 500;
    text-align: center;
    color: #d0d0d0;
    margin-bottom: 0;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
}

@media (max-width: 768px) {
    .terms-title {
        font-size: 30px;
    }

    .terms-block h3 {
        font-size: 18px;
    }

    .terms-content {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .terms-welcome {
        grid-column: span 1 !important;
    }

    .terms-logo {
        margin-left: 0px;
    }
}