html {
    scroll-behavior: smooth;
}

.organic-shape {
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
}

.leaf-decoration::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #9CAF88 0%, #B8C4A8 100%);
    border-radius: 50% 0 50% 50%;
    opacity: 0.3;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(92, 107, 84, 0.15);
}

body {
    box-sizing: border-box;
}