/* Data Deletion Page Styles - Extends Privacy Policy Styling */

/* Deletion Methods Container */
.deletion-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.deletion-method {
    background: rgba(40, 244, 195, 0.05);
    border: 1px solid rgba(40, 244, 195, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.deletion-method:hover {
    background: rgba(40, 244, 195, 0.1);
    border-color: rgba(40, 244, 195, 0.4);
    transform: translateY(-5px);
}

.deletion-method h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gf-green);
}

.deletion-method p {
    margin-bottom: 12px;
}

.deletion-method ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.deletion-method li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.deletion-steps {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
}

.deletion-steps li {
    margin-bottom: 10px;
}

.deletion-note {
    background: rgba(40, 244, 195, 0.1);
    padding: 12px 15px;
    border-left: 3px solid var(--gf-green);
    border-radius: 5px;
    font-size: 0.95rem;
    margin-top: 15px;
}

/* Email Link Styling */
.email-link {
    color: var(--gf-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--gf-blue);
    text-decoration: underline;
}

/* Data Grid */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.data-item {
    background: rgba(26, 37, 48, 0.5);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(40, 244, 195, 0.15);
}

.data-item.deleted {
    border-left: 4px solid #FF6B6B;
}

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

.data-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.data-item.deleted .data-icon {
    color: #FF6B6B;
}

.data-item.retained .data-icon {
    color: var(--gf-yellow);
}

.data-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.data-item ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.data-item li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Timeline */
.timeline-container {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(40, 244, 195, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gf-green), var(--gf-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gf-dark-background);
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid;
}

.info-box.warning {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #FF6B6B;
}

.info-box.info {
    background: rgba(40, 244, 195, 0.1);
    border-left-color: var(--gf-green);
}

.info-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    margin-top: 5px;
}

.info-box.warning .info-icon {
    color: #FF6B6B;
}

.info-box.info .info-icon {
    color: var(--gf-green);
}

.info-text h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.info-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* FAQ */
.faq-container {
    margin: 30px 0;
}

.faq-item {
    background: rgba(40, 244, 195, 0.05);
    border: 1px solid rgba(40, 244, 195, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--gf-green);
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-box {
    background: rgba(40, 244, 195, 0.1);
    border: 1px solid rgba(40, 244, 195, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--gf-text-light);
    font-style: italic;
}

/* Email Link */
.email-link {
    color: var(--gf-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--gf-blue);
    text-decoration: underline;
}

/* Policy Link */
.policy-link {
    color: var(--gf-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: var(--gf-blue);
    text-decoration: underline;
}

/* Copyright Notice */
.copyright-notice {
    text-align: center;
    color: var(--gf-text-light);
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(40, 244, 195, 0.1);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.breadcrumb-link {
    color: var(--gf-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--gf-blue);
}

.breadcrumb-separator {
    color: var(--gf-text-light);
}

.breadcrumb-current {
    color: var(--gf-text-light);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(40, 244, 195, 0.1);
    margin-top: 40px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--gf-green);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gf-blue);
}

.footer-separator {
    color: var(--gf-text-light);
}

.footer-copyright {
    color: var(--gf-text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .deletion-header h1 {
        font-size: 2rem;
    }

    .deletion-section h2 {
        font-size: 1.5rem;
    }

    .steps-container,
    .data-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        padding: 20px;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .deletion-content {
        padding: 25px 15px;
    }
}

/* Print styles */
@media print {
    .deletion-content {
        background: white;
        color: black;
        box-shadow: none;
        border: none;
    }

    .deletion-section {
        break-inside: avoid;
    }

    .deletion-header h1 {
        color: black;
        background: none;
        -webkit-text-fill-color: initial;
    }

    .deletion-section h2,
    .deletion-section h3 {
        color: black;
    }

    .email-link,
    .policy-link {
        color: blue;
        text-decoration: underline;
    }

    .breadcrumb,
    .footer {
        display: none;
    }
}