* {
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b35 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

header h2 {
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.9;
}

main {
    padding: 40px 30px;
}

.privacy-section {
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 10px;
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
}

.privacy-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.privacy-section h4 {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.privacy-section p {
    margin-bottom: 15px;
    color: #555;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 8px;
    color: #555;
}

.highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-left-color: #27ae60;
}

.privacy-guarantee {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #27ae60;
}

.privacy-guarantee ul li {
    color: #2c3e50;
    font-weight: 500;
}

.privacy-guarantee strong {
    color: #27ae60;
}

a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 0.9em;
}

footer p {
    margin-bottom: 5px;
    opacity: 0.8;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    main {
        padding: 25px 20px;
    }
    
    .privacy-section {
        padding: 20px 15px;
    }
} 