/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #56007d;
}

.nav-logo i {
    font-size: 1.8rem;
}

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

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

.nav-menu a:hover {
    color: #56007d;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #56007d 0%, #8a2be2 100%);
    color: white;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8f9fa;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e9ecef;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #56007d, #8a2be2);
    color: white;
    box-shadow: 0 4px 15px rgba(86, 0, 125, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(86, 0, 125, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: #ffbd16;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(45deg, #56007d, #8a2be2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.app-mockup i {
    font-size: 4rem;
    color: white;
}

/* Struggles Section */
.struggles {
    padding: 6rem 0;
    background: #f8f9fa;
}

.struggles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.struggles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.struggle-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.struggle-item:hover {
    transform: translateY(-5px);
}

.struggle-item i {
    font-size: 2rem;
    color: #56007d;
    margin-top: 0.5rem;
}

.struggle-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.struggles-footer {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #56007d;
}

/* Why Created Section */
.why-created {
    padding: 4rem 0;
    background: linear-gradient(135deg, #56007d, #8a2be2);
    color: white;
    text-align: center;
}

.why-created h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-created-text {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #56007d;
    box-shadow: 0 10px 30px rgba(86, 0, 125, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #56007d, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: '•';
    color: #56007d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #56007d 0%, #8a2be2 100%);
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid #ffbd16;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #e9ecef;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

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

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.pricing-card.free {
    border: 3px solid #56007d;
    position: relative;
}

.pricing-card.free::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffbd16;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card.paid {
    background: linear-gradient(135deg, #56007d, #8a2be2);
    color: white;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li i {
    color: #56007d;
}

.pricing-card.paid li i {
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: #56007d;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.testimonial-author {
    color: #56007d;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #56007d, #8a2be2);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #56007d;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-links a {
    color: #56007d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffbd16;
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .app-mockup {
        width: 250px;
        height: 500px;
    }
    
    .struggles-grid,
    .features-grid,
    .steps-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

/* Privacy Policy Specific Styles */
.last-updated {
    padding: 3rem 0;
    background: #f8f9fa;
}

.update-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.update-card i {
    font-size: 2.5rem;
    color: #56007d;
}

.update-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.update-content p {
    color: #666;
    font-size: 1.1rem;
}

.info-collect {
    padding: 6rem 0;
    background: white;
}

.info-collect h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #56007d;
    box-shadow: 0 10px 30px rgba(86, 0, 125, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #56007d, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.info-card li::before {
    content: '•';
    color: #56007d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.how-we-use {
    padding: 6rem 0;
    background: #f8f9fa;
}

.how-we-use h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.usage-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-5px);
}

.usage-item i {
    font-size: 2rem;
    color: #56007d;
    margin-top: 0.5rem;
}

.usage-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.usage-content p {
    color: #666;
    line-height: 1.6;
}

.data-sharing {
    padding: 6rem 0;
    background: white;
}

.data-sharing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

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

.sharing-card {
    background: linear-gradient(135deg, #56007d, #8a2be2);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sharing-icon i {
    font-size: 3rem;
    color: #ffbd16;
}

.sharing-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sharing-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.sharing-list h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.sharing-list ul {
    list-style: none;
}

.sharing-list li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sharing-list li i {
    color: #56007d;
    margin-top: 0.2rem;
}

.data-security {
    padding: 6rem 0;
    background: linear-gradient(135deg, #56007d, #8a2be2);
    color: white;
}

.data-security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.security-card i {
    font-size: 3rem;
    color: #ffbd16;
    margin-bottom: 1.5rem;
}

.security-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.security-card p {
    line-height: 1.6;
    color: #e9ecef;
}

.your-rights {
    padding: 6rem 0;
    background: #f8f9fa;
}

.your-rights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.right-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.right-item:hover {
    transform: translateY(-5px);
    border-color: #56007d;
    box-shadow: 0 10px 30px rgba(86, 0, 125, 0.1);
}

.right-item i {
    font-size: 2.5rem;
    color: #56007d;
    margin-bottom: 1.5rem;
}

.right-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.right-item p {
    color: #666;
    line-height: 1.6;
}

.privacy-contact {
    padding: 6rem 0;
    background: white;
}

.privacy-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

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

.contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #56007d;
}

.contact-item span {
    text-align: center;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .info-grid,
    .usage-grid,
    .security-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .sharing-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Delete Account Page Specific Styles */
.delete-warning {
    padding: 3rem 0;
    background: #fff3cd;
}

.warning-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    border-left: 5px solid #ffc107;
}

.warning-icon {
    width: 80px;
    height: 80px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-icon i {
    font-size: 2rem;
    color: white;
}

.warning-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #856404;
}

.warning-content p {
    color: #856404;
    font-size: 1.1rem;
    margin: 0;
}

.what-deleted {
    padding: 6rem 0;
    background: white;
}

.what-deleted h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.deleted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.deleted-item {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.deleted-item:hover {
    transform: translateY(-5px);
    border-color: #dc3545;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.1);
}

.deleted-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #dc3545, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.deleted-icon i {
    font-size: 2rem;
    color: white;
}

.deleted-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.deleted-item ul {
    list-style: none;
}

.deleted-item li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.deleted-item li::before {
    content: '•';
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.alternatives {
    padding: 6rem 0;
    background: #f8f9fa;
}

.alternatives h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.alternative-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.alternative-card:hover {
    transform: translateY(-5px);
    border-color: #56007d;
    box-shadow: 0 10px 30px rgba(86, 0, 125, 0.1);
}

.alternative-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #56007d, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.alternative-icon i {
    font-size: 2rem;
    color: white;
}

.alternative-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.alternative-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.data-export {
    padding: 6rem 0;
    background: linear-gradient(135deg, #56007d, #8a2be2);
    color: white;
}

.export-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.export-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.export-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #e9ecef;
}

.export-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.export-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.export-benefits li i {
    color: #ffbd16;
    font-size: 1.2rem;
}

.export-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.export-icon {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.export-icon i {
    font-size: 4rem;
    color: #ffbd16;
}

.deletion-process {
    padding: 6rem 0;
    background: #f8f9fa;
}

.deletion-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #56007d, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.final-warning {
    padding: 6rem 0;
    background: #dc3545;
    color: white;
}

.final-warning-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.warning-icon-large {
    flex-shrink: 0;
}

.warning-icon-large i {
    font-size: 6rem;
    color: #ffbd16;
}

.warning-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.warning-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f8d7da;
}

.warning-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.delete-contact {
    padding: 6rem 0;
    background: white;
}

.delete-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
}

.modal-body {
    padding: 2rem;
}

.confirmation-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff3cd;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #ffc107;
}

.confirmation-warning i {
    color: #856404;
    font-size: 1.5rem;
}

.confirmation-warning p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.deletion-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.deletion-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.deletion-form input {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.deletion-form input:focus {
    outline: none;
    border-color: #56007d;
}

.checkbox-confirm {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-confirm input[type="checkbox"] {
    margin-top: 0.2rem;
    transform: scale(1.2);
}

.checkbox-confirm label {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Mobile Responsive for Delete Account Page */
@media (max-width: 768px) {
    .warning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .export-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-warning-content {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-actions {
        justify-content: center;
    }
    
    .modal-content {
        margin: 1rem;
        max-width: none;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .deleted-grid,
    .alternatives-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .warning-icon-large i {
        font-size: 4rem;
    }
    
    .export-icon {
        width: 150px;
        height: 150px;
    }
    
    .export-icon i {
        font-size: 3rem;
    }
}
