/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
}

/* Navigation */
nav {
    background: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #e5e7eb;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    text-align: center;
    background: white;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

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

.footer-content a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
}

/* Privacy Policy Page */
.privacy-hero {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    padding: 100px 0 50px;
    margin-bottom: 40px;
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: #e2e8f0;
    font-size: 0.9rem;
}

.policy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.policy-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.policy-nav {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-nav ul {
    list-style: none;
    padding: 20px;
}

.policy-nav li {
    margin-bottom: 15px;
}

.policy-nav a {
    color: #2d3748;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.policy-nav a:hover {
    background: #f7fafc;
    color: #2b6cb0;
}

.policy-main {
    flex: 1;
}

.policy-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.policy-section h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
    color: #4a5568;
}

.styled-list li:last-child {
    border-bottom: none;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .policy-container {
        flex-direction: column;
    }

    .policy-sidebar {
        width: 100%;
    }

    .policy-nav {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 0 40px;
    }

    .policy-section {
        padding: 25px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

.deletion-hero {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: white;
    padding: 80px 0 40px;
    margin-bottom: 40px;
}

.deletion-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.deletion-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.deletion-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.deletion-warning {
    background: #fff1f2;
    border: 2px solid #f87171;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: #dc2626;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.deletion-checklist {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #dc2626;
}

.deletion-action {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.deletion-form {
    max-width: 400px;
    margin: 20px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-cancel {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    background: #e5e7eb;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
}

.btn-delete {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    background: #b91c1c;
    color: white;
    cursor: pointer;
    font-weight: 500;
}

.btn-delete:hover {
    background: #7f1d1d;
}

.deletion-support {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 8px;
}

.support-contact {
    margin-top: 20px;
}

.support-contact a {
    color: #dc2626;
    text-decoration: none;
    margin: 0 10px;
}

.support-contact span {
    color: #6b7280;
}

@media (max-width: 768px) {
    .deletion-hero {
        padding: 60px 0 30px;
    }

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

    .button-group {
        flex-direction: column;
    }

    .deletion-action {
        padding: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-icon {
    font-size: 48px;
    color: #16a34a;
    margin-bottom: 20px;
    background: #ecfdf5;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-content h2 {
    color: #1f2937;
    margin-bottom: 15px;
}

.modal-content p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-note {
    font-size: 0.9rem;
    color: #b91c1c !important;
    background: #fff1f2;
    padding: 10px;
    border-radius: 6px;
    margin: 20px 0;
}

.btn-ok {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-ok:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 25px;
        margin: 20px;
    }
}
