
header {
    display: flex !important;
}

.header-container {
    background-color: #1D2846;
}

.terms-text-container {
    margin: 200px 10% 100px;
}

h1, h2 {
    text-align: center;
    color: #333;
}

h1 {
    margin-bottom: 3rem;
}

h2 {
    margin-bottom: 1.5rem;
}

p, ul {
    margin-bottom: 20px;
}

ul {
    padding-left: 20px;
    list-style-type: decimal;
}

ul ul {
    list-style-type: lower-alpha;

}

li {
    margin-bottom: 2rem;
    line-height: 1.6;
    padding-left: 1rem;
}

ul ul li {
    margin-bottom: 1rem;
}

section {
    margin-bottom: 40px;
}

@media(max-width: 768px) {
    header {
        justify-content: center;
    }
}

@media(max-width: 600px) {
    .terms-text-container {
        margin-left: 1rem;
        margin-right: 1rem;  
    }

}

