/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    background-color: rgb(255, 255, 253);
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
    
        color: #333 ;
}
p{
    color: #212529 ;
}





.one {
    width: 188px;
    background-color: #f5f5f5;
    padding: 20px;
    border-right: 1px solid #ddd;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}
.two {
    margin: 10px 0;
}
.three {
    display: block;
    width: 100%;
    font-size: 12px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 10px 0;
    font-weight: bold;
}
.three.active {
    color: #0078ff;
}

.four {
    margin-left: 53px;
    flex: 1;
    padding: 40px;
    overflow-y: auto;
}

.one, .four {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 27px ;
    color: black;
    font-weight: 700 ;
    margin-bottom: 10px ;
}

h2 {
    font-size: 18px ;
    color: black;
    /* margin-top: 30px ; */
    font-weight: 600 ;
}

h3 {
    font-size: 18px ;
    color: #444;
    /* margin-top:/ 20px ; */
    font-weight: 600 ;
    padding-left: 10px;
}

p {
    color: #555;
    line-height: 1.8 ;
    margin-bottom: 5px ;
    padding-left: 22px;
    margin-top: 5px;
    font-size: 13px;
}

ul {
    list-style-type: disc ;
    padding-left: 56px ;
    color: #555;
    padding-top: 5px;}

li {
    margin-bottom: 8px ;
    font-size: 13px;
}

a {
    color: black;
    text-decoration: none;
   
}

a:hover {
    /* text-decoration: underline ; */
}

hr {
    border: 0 ;
    height: 2px ;
    background-color: rgb(253, 249, 249);
    margin: 25px 0;
}

.containerTerms ul li::marker {
    color: #2a2a72;
    font-weight: bold;
}

@media (max-width: 768px) {
    .containerTerms {
        padding: 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .one {
        width: 160px;
        padding: 15px;
        display: none;
    }
    .four {
        padding: 30px;
    }
    h1 {
        font-size: 18px;
    }
    h2 {
        font-size: 16px;
    }
    h3 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .containerTerms {
        flex-direction: column;
        padding: 20px;
    }
    .one {
        width: 100%;
        height: auto;
        position: relative;
        display: none;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    .four {
        margin-left: 0;
        padding: 20px;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
    .three {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .one {
        padding: 10px;
        display: none;
    }
    .four {
        padding: 15px;
    }
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 16px;
    }
    h3 {
        font-size: 14px;
    }
    p, li {
        font-size: 12px;
    }
}










