/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #FF6B9D;
    --primary-dark: #E5568A;
    --secondary: #FFA8C5;
    --accent: #FFD6E8;
    --purple: #C779D0;
    --purple-light: #E8B4F0;
    --gradient-1: linear-gradient(135deg, #FF6B9D 0%, #C779D0 100%);
    --gradient-2: linear-gradient(135deg, #FFA8C5 0%, #FFD6E8 100%);
    --bg-light: #FFF9FC;
    --bg-white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-gray: #6B6B6B;
    --text-light: #9B9B9B;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.heart-icon {
    font-size: 32px;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(1);
    }
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== DELETE ACCOUNT PAGE ===== */
.delete-account-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF9FC 0%, #FFE8F0 50%, #FFD6E8 100%);
    min-height: 100vh;
}

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

.delete-account-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.delete-account-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.delete-account-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.info-box {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.info-box ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.info-box ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.warning-box {
    border-left: 4px solid #ff9800;
}

.warning-note {
    color: #ff9800;
    font-weight: 600;
    margin-top: 15px;
}

.help-box {
    border-left: 4px solid var(--purple);
}

.support-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.deletion-options {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.deletion-options h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.deletion-intro {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.deletion-step {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.deletion-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.deletion-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.deletion-step p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.deletion-step a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.deletion-step a:hover {
    text-decoration: underline;
}

.data-retention-info {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.data-retention-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.data-retention-info p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.data-retention-info ul {
    list-style: none;
    padding-left: 0;
}

.data-retention-info ul li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.data-retention-info ul li::before {
    content: '•';
    position: absolute;
    left: 15px;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.back-to-home {
    text-align: center;
    padding: 20px 0;
}

.btn-back {
    display: inline-block;
    padding: 15px 35px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF9FC 0%, #FFE8F0 50%, #FFD6E8 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.heart-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.heart-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.heart-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.heart-4 {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease;
}

.title-emoji {
    font-size: 70px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== DOWNLOAD BUTTONS ===== */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.appstore-btn {
    background: var(--text-dark);
    color: white;
}

.playstore-btn {
    background: var(--gradient-1);
    color: white;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.btn-icon {
    font-size: 32px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-small {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-large {
    font-size: 18px;
    font-weight: 700;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    margin-top: 60px;
    text-align: center;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.cover-image {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.cover-image:hover {
    transform: scale(1.02);
}

/* ===== APP SHOWCASE SECTION ===== */
.app-showcase {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FFF9FC 0%, #FFE8F0 100%);
}

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

.showcase-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.showcase-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.showcase-img:hover {
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
    transform: scale(1.05);
}

.showcase-caption {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '💕';
    display: block;
    font-size: 32px;
    margin-top: 15px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-image-wrapper {
    margin: -40px -40px 20px -40px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    max-height: 400px;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.2);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 15px;
}

.feature-card-highlight {
    background: var(--gradient-2);
    border-color: var(--primary);
}

.feature-card-highlight .feature-title,
.feature-card-highlight .feature-description {
    color: var(--text-dark);
}

/* ===== VIDEO DEMO SECTION ===== */
.video-demo {
    padding: var(--section-padding) 0;
    background: white;
}

.video-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FFF9FC 0%, #FFE8F0 100%);
}

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

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.1);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-display);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== COMMUNITY SECTION ===== */
.community {
    padding: var(--section-padding) 0;
    background: white;
}

.community-content {
    text-align: center;
}

.community-text {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #C779D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== DOWNLOAD CTA SECTION ===== */
.download-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #FF6B9D 0%, #C779D0 100%);
    color: white;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.cta-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.cta-content .download-buttons {
    justify-content: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.cta-title::after {
    display: none;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 16px;
        padding: 15px 40px;
        border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    /* Delete Account Page */
    .delete-account-title {
        font-size: 36px;
    }

    .delete-account-subtitle {
        font-size: 18px;
    }

    .delete-account-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-box {
        padding: 25px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deletion-options {
        padding: 30px 25px;
    }

    .data-retention-info {
        padding: 30px 25px;
    }

    /* Existing styles */
    .hero-title {
        font-size: 48px;
        flex-direction: column;
        gap: 10px;
    }

    .title-emoji {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

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

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-img {
        max-width: 100%;
    }

    .feature-image-wrapper {
        max-height: 300px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .video-container {
        border-radius: 20px;
    }

    .video-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .logo {
        font-size: 24px;
    }

    .heart-icon {
        font-size: 28px;
    }

    .feature-image-wrapper {
        max-height: 250px;
    }

    .cover-image {
        border-radius: 20px;
    }

    /* Delete Account Page */
    .delete-account-title {
        font-size: 28px;
    }

    .delete-account-subtitle {
        font-size: 16px;
    }

    .delete-account-section {
        padding: 100px 0 60px;
    }

    .info-box {
        padding: 20px;
    }

    .info-icon {
        font-size: 36px;
    }

    .info-box h3 {
        font-size: 20px;
    }

    .deletion-options h2,
    .data-retention-info h2 {
        font-size: 24px;
    }

    .deletion-options {
        padding: 25px 20px;
    }

    .data-retention-info {
        padding: 25px 20px;
    }
}