body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.logo img {
    height: 40px;
}

nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #ff00ff;
}

.terms-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.terms-content h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.terms-content h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.terms-content p, .terms-content li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.terms-content strong {
    font-weight: 700;
    color: #000;
}

.terms-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 30px 50px;
    border-top: 1px solid #eee;
    margin-top: 80px;
    background-color: #fff;
}

footer a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

footer p {
    color: #777;
    margin: 0;
}
