@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&display=swap');

        
        .clip-path-1 {
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }
        
        .clip-path-2 {
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        }

        .decoration-dots {
            background-image: radial-gradient(#0f4b46 1px, transparent 1px);
            background-size: 20px 20px;
        }
        
        .decoration-lines {
            background: repeating-linear-gradient(
                45deg,
                rgba(15, 75, 70, 0.1),
                rgba(15, 75, 70, 0.1) 2px,
                transparent 2px,
                transparent 10px
            );
        }
        
        .squiggle-border {
            position: relative;
        }
        
        .squiggle-border::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            height: 5px;
            width: 100px;
            background: #a97b7e;
            mask: url("data:image/svg+xml,%3Csvg width='100' height='5' viewBox='0 0 100 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2.5C5 2.5 5 0 10 0S15 5 20 5 25 0 30 0 35 5 40 5 45 0 50 0 55 5 60 5 65 0 70 0 75 5 80 5 85 0 90 0 95 5 100 5' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
        }

        .notification {
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .notification.show {
            transform: translateY(0);
        }
        
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .float-animation-delay {
            animation: float 6s ease-in-out infinite;
            animation-delay: 2s;
        }

        
        .decorative-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a97b7e' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
