* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

.last-updated {
    opacity: 0.9;
    font-size: 0.9em;
}

section {
    padding: 30px 40px;
    border-bottom: 1px solid #eef2f6;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

h3 {
    color: #2d3748;
    margin: 20px 0 15px;
    font-size: 1.3em;
}

h4 {
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.data-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

.data-card h4 {
    color: #2d3748;
    margin-bottom: 10px;
}

ul,
ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 5px;
}

.storage-info {
    background: #ebf4ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin: 10px 5px 0;
}

.highlight-box {
    background: #f0fff4;
    border: 2px solid #48bb78;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.highlight-box p {
    color: #22543d;
    font-size: 1.1em;
}

.deletion-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.option-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.option-card h4 {
    color: #2d3748;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin: 15px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.email-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.email-link:hover {
    border-bottom-color: #667eea;
}

.note {
    font-size: 0.85em;
    color: #718096;
    margin-top: 10px;
}

.processing-note {
    background: #fefcbf;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #744210;
}

.contact-info {
    background: #f7fafc;
    border-radius: 12px;
    padding: 20px;
}

.contact-item {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    min-width: 120px;
    color: #4a5568;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

footer {
    background: #2d3748;
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.footer-note {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2em;
    }

    section {
        padding: 20px;
    }

    .deletion-options {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contact-label {
        min-width: auto;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        padding: 0;
    }

    .container {
        box-shadow: none;
    }

    .btn,
    .badge {
        print-color-adjust: exact;
    }
}