

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {

            --champagne: #f5e6d3;
            --rose-gold: #e8b4b8;
            --rose-deep: #d4919a;
            --lavender: #e6d5e8;
            --peach: #ffdbc5;
            --cream: #faf7f2;
            --brown-text: #4a3f35;
            --brown-light: #8b7f74;
            

            --shadow-soft: 0 4px 20px rgba(228, 180, 184, 0.15);
            --shadow-medium: 0 8px 30px rgba(228, 180, 184, 0.25);
            --shadow-romantic: 0 15px 50px rgba(228, 180, 184, 0.35);
            

            --gradient-hero: linear-gradient(135deg, #fce8ec 0%, #efe5f0 50%, #f5e6d3 100%);
            --gradient-romantic: linear-gradient(135deg, #e8b4b8 0%, #d4a5ce 100%);
            --gradient-champagne: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
            --gradient-sunset: linear-gradient(135deg, #ffd4a3 0%, #ffb8d1 50%, #e8b4f5 100%);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--brown-text);
            background: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            line-height: 1.2;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInSlow {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes heartbeat {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out forwards;
            opacity: 0;
        }

        .animate-fade-in-slow {
            animation: fadeInSlow 1.5s ease-out forwards;
            opacity: 0;
        }

        .animate-scale-in {
            animation: scaleIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-float {
            animation: float 4s ease-in-out infinite;
        }

        .animate-heartbeat {
            animation: heartbeat 2s ease-in-out infinite;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 20px;
            color: var(--brown-text);
        }

        .section-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: var(--brown-light);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }




.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #fff5f8 0%, #fbe0ea 40%, #f8cfe1 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 20px;
}


.hero::before, .hero::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 200, 220, 0.4), transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    filter: blur(60px);
    z-index: 0;
}

.hero::before {
    top: -200px;
    left: -200px;
}

.hero::after {
    bottom: -200px;
    right: -200px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #503a3a;
}


.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
    background: linear-gradient(90deg, #e6a1b8, #e7b8c8, #f1c9d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 30px rgba(255, 210, 225, 0.6);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    animation: fadeIn 1.2s ease forwards;
}


.hero-heart {
    width: 90px;
    height: 90px;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(255, 190, 210, 0.4);
    backdrop-filter: blur(8px);
    animation: scaleIn 1.2s ease forwards;
}

.heart-icon {
    width: 45px;
    height: 45px;
    fill: #e67ca1;
    animation: heartbeat 1.6s infinite ease-in-out;
}


.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: #8a6a6a;
    margin: 1.5rem 0;
    opacity: 0.9;
}


.hero-number span {
    display: inline-block;
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, #ec99b8, #f5bdd3, #ffd2e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(255, 180, 200, 0.4);
    margin: 2rem 0;
}


.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #6e5656;
    line-height: 1.9;
    max-width: 700px;
    margin: 2rem auto;
    font-weight: 400;
    opacity: 0.95;
}


.hero-btn {
    display: inline-block;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(90deg, #ea87b2, #f4a9c9);
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(235, 150, 180, 0.5);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 40px rgba(240, 160, 190, 0.6);
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}



        .floating-hearts {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-heart {
            position: absolute;
            width: 30px;
            height: 30px;
            fill: rgba(232, 180, 184, 0.2);
        }

        .floating-heart:nth-child(1) {
            top: 10%;
            left: 10%;
            animation: float 5s ease-in-out infinite;
        }

        .floating-heart:nth-child(2) {
            top: 20%;
            right: 15%;
            animation: float 6s ease-in-out infinite;
            animation-delay: 1s;
        }

        .floating-heart:nth-child(3) {
            bottom: 25%;
            left: 20%;
            animation: float 7s ease-in-out infinite;
            animation-delay: 2s;
        }

        .floating-heart:nth-child(4) {
            bottom: 15%;
            right: 25%;
            animation: float 5.5s ease-in-out infinite;
            animation-delay: 1.5s;
        }

  
        .story {
            background: white;
            position: relative;
        }

        .story::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(232, 180, 184, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .story::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 219, 197, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--rose-gold), transparent);
        }

        .timeline-item {
            display: flex;
            gap: 30px;
            margin-bottom: 80px;
            position: relative;
            animation: slideInLeft 0.8s ease-out forwards;
            opacity: 0;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }

        .timeline-icon {
            flex-shrink: 0;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-soft);
            border: 3px solid rgba(232, 180, 184, 0.3);
            z-index: 2;
        }

        .timeline-icon svg {
            width: 50px;
            height: 50px;
            fill: none;
            stroke: var(--rose-gold);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            box-shadow: var(--shadow-romantic);
            transform: translateX(5px);
        }

        .timeline-date {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--rose-deep);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .timeline-date svg {
            width: 18px;
            height: 18px;
            stroke: var(--rose-deep);
        }

        .timeline-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--brown-text);
        }

        .timeline-description {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--brown-light);
        }

        .story-quote {
            max-width: 900px;
            margin: 100px auto 0;
            background: var(--gradient-romantic);
            padding: 60px 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-romantic);
            text-align: center;
        }

        .story-quote p {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-style: italic;
            color: white;
            line-height: 1.8;
            font-family: 'Playfair Display', serif;
        }

        .gallery {
            background: var(--gradient-champagne);
            padding: 100px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            aspect-ratio: 1;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            position: relative;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: scaleIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-romantic);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            align-items: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: white;
            font-size: 1.3rem;
            font-family: 'Playfair Display', serif;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .gallery-heart {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .gallery-item:hover .gallery-heart {
            opacity: 1;
            transform: scale(1);
        }

        .gallery-heart svg {
            width: 22px;
            height: 22px;
            fill: var(--rose-gold);
        }

        .gallery-note {
            text-align: center;
            margin-top: 80px;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--brown-light);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }


        .letter {
            padding: 120px 0;
            background: white;
            position: relative;
        }

        .letter::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(232, 180, 184, 0.06) 0%, transparent 70%);
        }

        .letter::after {
            content: '';
            position: absolute;
            bottom: 20%;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 219, 197, 0.08) 0%, transparent 70%);
        }

        .letter-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .letter-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .letter-sparkles {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .letter-sparkles svg {
            width: 25px;
            height: 25px;
            stroke: var(--rose-gold);
        }

        .letter-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--brown-text);
        }

        .letter-content {
            background: white;
            padding: 70px;
            border-radius: 35px;
            box-shadow: var(--shadow-romantic);
            border: 2px solid rgba(232, 180, 184, 0.15);
        }

        .letter-opening {
            text-align: center;
            margin-bottom: 50px;
        }

        .letter-opening svg {
            width: 50px;
            height: 50px;
            fill: var(--rose-gold);
            margin-bottom: 20px;
        }

        .letter-opening p {
            font-size: 2rem;
            font-family: 'Playfair Display', serif;
            color: var(--brown-text);
        }

        .letter-body {
            font-size: 1.25rem;
            line-height: 2;
            color: var(--brown-text);
        }

        .letter-body p {
            margin-bottom: 30px;
            animation: fadeIn 1s ease-out forwards;
            opacity: 0;
        }

        .letter-body p:nth-child(1) { animation-delay: 0.2s; }
        .letter-body p:nth-child(2) { animation-delay: 0.4s; }
        .letter-body p:nth-child(3) { animation-delay: 0.6s; }
        .letter-body p:nth-child(4) { animation-delay: 0.8s; }
        .letter-body p:nth-child(5) { animation-delay: 1s; }
        .letter-body p:nth-child(6) { animation-delay: 1.2s; }
        .letter-body p:nth-child(7) { animation-delay: 1.4s; }

        .letter-highlight {
            font-weight: 600;
            color: var(--brown-text);
        }

        .letter-emphasis {
            font-size: 2rem;
            font-style: italic;
            text-align: center;
            color: var(--rose-deep);
            margin: 50px 0;
            font-family: 'Playfair Display', serif;
        }

        .letter-signature {
            text-align: center;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid rgba(232, 180, 184, 0.2);
        }

        .letter-signature-love {
            font-size: 1.4rem;
            color: var(--brown-light);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .letter-signature-name {
            font-size: 2rem;
            color: var(--brown-text);
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
        }

        .letter-signature-date {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--brown-light);
            font-size: 0.95rem;
        }

        .letter-signature-date svg {
            width: 16px;
            height: 16px;
            fill: var(--rose-gold);
        }

        .letter-quote {
            text-align: center;
            margin-top: 80px;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--brown-light);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-family: 'Playfair Display', serif;
        }

        .stats {
            padding: 100px 0;
            background: var(--gradient-champagne);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-soft);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(232, 180, 184, 0.1);
            animation: scaleIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .stat-card:nth-child(4) { animation-delay: 0.4s; }
        .stat-card:nth-child(5) { animation-delay: 0.5s; }
        .stat-card:nth-child(6) { animation-delay: 0.6s; }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-romantic);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(232, 180, 184, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-icon {
            transform: scale(1.15);
            background: rgba(232, 180, 184, 0.25);
        }

        .stat-icon svg {
            width: 35px;
            height: 35px;
            stroke: var(--rose-gold);
        }

        .stat-value {
            font-size: 4rem;
            font-weight: 300;
            color: var(--brown-text);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            transition: color 0.4s ease;
        }

        .stat-card:hover .stat-value {
            color: var(--rose-deep);
        }

        .stat-label {
            font-size: 1.8rem;
            color: var(--brown-text);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .stat-description {
            font-size: 1.05rem;
            color: var(--brown-light);
            line-height: 1.7;
        }

        .stats-quote {
            max-width: 900px;
            margin: 80px auto 0;
            text-align: center;
        }

        .stats-quote p {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-style: italic;
            color: var(--brown-text);
            line-height: 1.8;
            font-family: 'Playfair Display', serif;
        }


        .footer {
            padding: 100px 0;
            background: white;
            border-top: 3px solid rgba(232, 180, 184, 0.15);
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 3px;
            background: var(--gradient-romantic);
        }

        .footer-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-message {
            margin-bottom: 40px;
        }

        .footer-message p:first-child {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: var(--brown-text);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .footer-message p:last-child {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-style: italic;
            color: var(--brown-light);
            font-family: 'Playfair Display', serif;
        }

        .footer-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 50px 0;
        }

        .footer-line {
            width: 80px;
            height: 2px;
            background: rgba(232, 180, 184, 0.4);
        }

        .footer-heart {
            width: 35px;
            height: 35px;
            fill: var(--rose-gold);
        }

        .footer-signature {
            margin-bottom: 50px;
        }

        .footer-signature-love {
            font-size: 1.5rem;
            color: var(--brown-light);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        .footer-signature-name {
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--brown-text);
            font-family: 'Playfair Display', serif;
        }

        .footer-dates {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            padding: 30px;
            background: rgba(232, 180, 184, 0.08);
            border-radius: 20px;
        }

        .footer-date {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--brown-light);
        }

        .footer-date svg {
            width: 20px;
            height: 20px;
            stroke: var(--rose-deep);
        }

        .footer-note {
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid rgba(232, 180, 184, 0.2);
        }

        .footer-note p {
            font-size: 0.95rem;
            color: var(--brown-light);
            opacity: 0.7;
        }


        .footer-decorative {
            position: absolute;
            pointer-events: none;
        }

        .footer-decorative:first-of-type {
            bottom: 80px;
            left: 50px;
            opacity: 0.12;
        }

        .footer-decorative:last-of-type {
            bottom: 120px;
            right: 80px;
            opacity: 0.12;
        }

        .footer-decorative svg {
            width: 50px;
            height: 50px;
            fill: var(--rose-gold);
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }

            .hero {
                min-height: 90vh;
            }

            .hero-heart {
                width: 60px;
                height: 60px;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-item {
                gap: 20px;
                margin-bottom: 60px;
            }

            .timeline-icon {
                width: 60px;
                height: 60px;
            }

            .timeline-icon svg {
                width: 30px;
                height: 30px;
            }

            .timeline-content {
                padding: 25px;
            }

            .timeline-title {
                font-size: 1.5rem;
            }

            .timeline-description {
                font-size: 1rem;
            }

            .story-quote {
                padding: 40px 30px;
                margin-top: 60px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .letter-content {
                padding: 40px 30px;
            }

            .letter-body {
                font-size: 1.1rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-card {
                padding: 35px;
            }

            .footer-dates {
                flex-direction: column;
                gap: 15px;
            }

            .floating-heart {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-btn {
                padding: 15px 35px;
                font-size: 1rem;
            }

            .letter-content {
                padding: 30px 20px;
            }

            .stat-value {
                font-size: 3rem;
            }

            .stat-label {
                font-size: 1.4rem;
            }
        }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }

