        body {
            box-sizing: border-box;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .font-poppins { font-family: 'Poppins', sans-serif; }
        .font-roboto { font-family: 'Roboto', sans-serif; }
        
        .gradient-bg {
            background: linear-gradient(135deg, #9B59B6 0%, #FF6F61 50%, #1ABC9C 100%);
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.9) 0%, rgba(255, 111, 97, 0.8) 100%);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero-slider {
            background: url('https://media.istockphoto.com/id/867110726/photo/handmade-angel-hanging-at-the-market-stall.jpg?s=612x612&w=0&k=20&c=zndUA3b8ktx4CO09OCvVxDQvledIV2tUCKney31WUcY=') center/cover;
            position: relative;
        }
        
        .nav-sticky {
            backdrop-filter: blur(10px);
            background: rgba(253, 246, 240, 0.95);
        }
        
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
        }
        
        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .testimonial-slider {
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        .page {
            display: none;
            min-height: calc(100vh - 80px);
            position: relative;
        }
        
        .page.active {
            display: block;
        }
        
        /* Ensure footer stays at bottom */
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        main {
            flex: 1;
        }
        
        footer {
            margin-top: auto;
        }
        
        .expandable-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .expandable-content.expanded {
            max-height: 500px;
        }
