
    /* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f6f9;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header-terms {
    background-color: #1d3557;
    color: #f1faee;
    text-align: center;
    padding: 30px 15px;
}

.header-terms h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.header-terms .date span {
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
}

/* Main Content */
.content {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.section {
    margin-bottom: 25px;
}

.section h2 {
    font-size: 1.8rem;
    color: #457b9d;
    border-left: 5px solid #457b9d;
    padding-left: 10px;
    margin-bottom: 15px;
}

.section h3 {
    font-size: 1.4rem;
    margin-top: 15px;
    color: #1d3557;
}

.section p, 
.section ul {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

ul {
    list-style: disc;
    padding-left: 25px;
}

.section a {
    color: #1d3557;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section a:hover {
    color: #457b9d;
}



/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .content {
        padding: 15px;
    }

    .section h2 {
        font-size: 1.6rem;
    }
}
