@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');
            
            body {
                font-family: 'Inter', system-ui, sans-serif;
                scroll-behavior: smooth;
            }
            
            .heading-font {
                font-family: 'Playfair Display', sans-serif;
            }

            .hero-bg {
        background: radial-gradient(circle at 70% 50%,
            rgba(52, 211, 153, 0.4),
            rgba(6, 78, 59, 0.95) 60%),
            linear-gradient(135deg, #022c22, #065f46);

        overflow: hidden;
        position: relative;
    }

    .hero-bg::before{
        content:'';
        position:absolute;
        inset:0;
        background:url('../images/couple-silhouette.png') no-repeat right center;
        background-size:45%;
        opacity:0.95;
    }
    .hero-bg::after{
        content:'';
        position:absolute;
        width:500px;
        height:500px;
        right:15%;
        top:50%;
        transform:translateY(-50%);
        background:rgba(110,231,183,.3);
        filter:blur(150px);
        border-radius:50%;
    }