/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main content */
main {
    padding: 3rem 0;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Sections */
section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Info grids */
.info-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.info-item,
.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.info-item .label,
.contact-item .label {
    font-weight: 500;
    color: #4a5568;
}

.info-item .value,
.contact-item .value {
    font-weight: 400;
    color: #2d3748;
    text-align: right;
}

/* Links */
a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Lists */
.deletion-steps {
    list-style: none;
    counter-reset: step-counter;
}

.deletion-steps li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f0fff4;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
    position: relative;
}

.deletion-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #48bb78;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.privacy-list,
.features-list {
    list-style: none;
}

.privacy-list li,
.features-list li {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item,
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-item .value,
    .contact-item .value {
        text-align: left;
    }
    
    .deletion-steps li {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    section h3 {
        font-size: 1.25rem;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    header {
        background: none;
        color: black;
        box-shadow: none;
        border-bottom: 2px solid #ccc;
    }
    
    section {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    footer {
        background: none;
        color: black;
        border-top: 1px solid #ccc;
    }
}
