.delete-page {
    padding-top: 6rem;
    min-height: 100vh;
}

.delete-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.delete-header {
    text-align: center;
    margin-bottom: 3rem;
}

.delete-header h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.delete-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.steps-section {
    background: var(--background-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.steps-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.data-section {
    margin-bottom: 2rem;
}

.data-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .data-grid {
        grid-template-columns: 1fr;
    }
}

.data-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.data-card.deleted {
    border-left: 4px solid var(--secondary-green);
}

.data-card.retained {
    border-left: 4px solid var(--accent-yellow);
}

.data-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.data-card.deleted h3 {
    color: var(--secondary-green);
}

.data-card.retained h3 {
    color: var(--accent-coral);
}

.data-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-card li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--background-light);
    font-size: 0.95rem;
}

.data-card li:last-child {
    border-bottom: none;
}

.retention-notice {
    background: #FFF8E1;
    border-left: 4px solid var(--accent-yellow);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}

.retention-notice h3 {
    color: var(--accent-coral);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.retention-notice p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.alternative-section {
    background: var(--background-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.alternative-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.alternative-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-email {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 92, 153, 0.4);
}

.faq-section {
    margin-bottom: 2rem;
}

.faq-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}