.terms-section {
    padding: 2.5rem 1rem;
    text-align: center;
    background-color: #F8F9FA;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.terms-link {
    color: var(--Brand-Colors-Blue-00, #1B365D);
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.2s ease-in-out;
    line-height: 1.4;
}


.terms-links a{
    text-decoration: underline !important;
}

.terms-link:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .terms-section {
        padding: 4rem 1rem;
    }
    
    .terms-link {
        font-size: 1.25rem;
    }
}
