.centered-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
}

.legal-container {
    max-width: 1200px;
    width: 100%;
    font-family: var(--font-primary);
}

.legal-title {
    font-size: 30px;
    font-weight: 600;
    color: #2d3748;
    position: relative;
    padding-bottom: 0.5rem;
}

.legal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 165px;
    height: 4px;
    background-color: #e53e3e;
    border-radius: 2px;
}


.legal-content {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.legal-subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #2d3748;
}

.text-highlight {
    font-weight: 600;
}

.list-style{
    list-style: none;
}

.list-style-item::before {
    content: "•";
    color: #e53e3e;
    font-weight: 600;
    display: inline-block;
    width: 15px;
    text-transform: capitalize;
}

.text-notice {
    font-weight: 600;
    text-transform: uppercase;
}

/* Media Queries */

@media (max-width: 991.98px) and (min-width: 768px) {
    .centered-container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .centered-container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 1024px) {
    .centered-container {
        padding: 2rem 1rem;
    }
}

