:root {
    --primary-pink: #fecdd3;
    --soft-beige: #fff7ed;
    --warm-coral: #fb7185;
    --deep-pink: #ec4899;
    --text-primary: #44403c;
    --text-secondary: #78716c;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--soft-beige);
    color: var(--text-primary);
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(236, 72, 153, 0.5);
    }
}

.countdown-digit {
    background: linear-gradient(135deg, #ec4899, #f97316);
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 1.25rem;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #fff1f2);
    border: 1px solid rgba(248, 180, 203, 0.2);
}

.cta-button {
    background: linear-gradient(135deg, #ec4899, #ef4444);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    width: 100%;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.4);
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.heart {
    position: absolute;
    color: rgba(254, 205, 211, 0.5);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg) scale(1.1);
        opacity: 0.7;
    }
}

section {
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 1.5rem;
    }
}

.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.grid { display: grid; }
.gap-8 { gap: 2rem; }
.gap-6 { gap: 1.5rem; }
.items-center { align-items: center; }
.text-4xl { font-size: 2.25rem; }
.font-extrabold { font-weight: 800; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.leading-tight { line-height: 1.25; }
.text-deep-pink { color: var(--deep-pink); }
.text-lg { font-size: 1.125rem; }
.text-text-secondary { color: var(--text-secondary); }
.max-w-xl { max-width: 36rem; }
.rounded-3xl { border-radius: 1.5rem; }
.object-cover { object-fit: cover; }
.w-full { width: 100%; }
.h-auto { height: auto; }
.max-h-[500px] { max-height: 500px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.p-8 { padding: 2rem; }
.bg-soft-beige { background-color: var(--soft-beige); }
.rounded-2xl { border-radius: 1rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.text-pink-500 { color: #ec4899; }
.text-orange-500 { color: #f97316; }
.text-yellow-500 { color: #f59e0b; }
.font-bold { font-weight: 700; }
.text-xl { font-size: 1.25rem; }
.text-text-primary { color: var(--text-primary); }
.items-start { align-items: flex-start; }
.p-6 { padding: 1.5rem; }
.bg-white { background-color: #ffffff; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.text-green-500 { color: #22c55e; }
.flex-shrink-0 { flex-shrink: 0; }
.mt-1 { margin-top: 0.25rem; }
.font-semibold { font-weight: 600; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.text-warm-coral { color: var(--warm-coral); }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.text-yellow-400 { color: #facc15; }
.fill-current { fill: currentColor; }
.italic { font-style: italic; }
.flex-grow { flex-grow: 1; }
.mt-auto { margin-top: auto; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-pink-400 { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); }
.to-orange-400 { --tw-gradient-to: #fb923c; }
.rounded-full { border-radius: 9999px; }
.justify-center { justify-content: center; }
.text-white { color: #ffffff; }
.mr-4 { margin-right: 1rem; }
.bg-green-50 { background-color: #f0fdf4; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.text-green-800 { color: #166534; }
.text-green-700 { color: #15803d; }
.leading-relaxed { line-height: 1.625; }
.bg-purple-50 { background-color: #faf5ff; }
.text-purple-500 { color: #a855f7; }
.text-purple-800 { color: #581c87; }
.text-purple-700 { color: #6b21a8; }
.text-base { font-size: 1rem; }
.text-red-500 { color: #ef4444; }
.text-red-800 { color: #991b1b; }
.text-red-700 { color: #b91c1c; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-gray-400 { color: #9ca3ac; }
.pb-6 { padding-bottom: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.bg-yellow-50 { background-color: #fefce8; }
.border-l-4 { border-left-width: 4px; }
.border-yellow-400 { border-color: #facc15; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.text-yellow-700 { color: #a16207; }
.text-yellow-800 { color: #854d0e; }
.text-5xl { font-size: 3rem; }
.text-green-600 { color: #16a34a; }
.text-sm { font-size: 0.875rem; }

@media (min-width: 640px) {
    .sm\:text-5xl { font-size: 3rem; }
    .sm\:p-12 { padding: 3rem; }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
    .sm\:text-6xl { font-size: 3.75rem; }
    .sm\:text-xl { font-size: 1.25rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:mx-0 { margin-left: 0; margin-right: 0; }
    .md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}