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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.header h1 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.effective-date {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

.intro {
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #007bff;
}

.intro-terms {
    background-color: #f8f9fa;
    border-left-color: #007bff;
}

.intro-privacy {
    background-color: #e8f5e8;
    border-left-color: #28a745;
}

.section {
    margin-bottom: 25px;
}

.section h2 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.section p {
    margin-bottom: 12px;
    text-align: justify;
}

.section ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.section li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.privacy-highlight {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
    margin: 15px 0;
}

.privacy-highlight strong {
    color: #856404;
}

.user-rights {
    background-color: #d4edda;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    margin: 15px 0;
}

.user-rights h3 {
    color: #155724;
    margin-bottom: 10px;
}

.contact-info {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #17a2b8;
    margin-top: 30px;
}

.contact-info h2 {
    color: #0c5460;
    border-bottom: none;
    margin-bottom: 10px;
}

.contact-email {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 0;
    }
    
    .header h1 {
        font-size: 1.8em;
    }
    
    .section h2 {
        font-size: 1.2em;
    }
}