* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f6fb;
    color: #333;
}

header {
    background-color: #281d44;
    color: white;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

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

nav .nav-links li {
    display: inline;
    margin-left: 20px;
}

nav .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav .nav-links li a:hover {
    color: #6056d4;
}

.terms-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    font-size: 36px;
    color: #281d44;
    margin-bottom: 30px;
}

.intro-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
}

.section {
    background: #fff;
    border: 1px solid #e1e1e1;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
}

.section h2 {
    font-size: 24px;
    color: #281d44;
    margin-bottom: 10px;
}

.section ul {
    list-style: none;
}

.section ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    background-color: #281d44;
    color: white;
    padding: 10px 0;
    margin-top: 50px;
}

footer p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}
