    /* General Styles */
        body {
            font-family: 'open-sans', sans-serif;
            background-color: #f9f9f9; /* Ivory White */
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'poppins', sans-serif;
        }

        /* Page transitions */
        .page {
            display: none;
            animation: fadeIn 0.8s ease-in-out;
        }
        .page.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Hero background */
        .hero-gradient {
            background: linear-gradient(135deg, #e7d9c9, #a8c3a3);
        }

        /* Scroll reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s, transform 0.8s;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Testimonial carousel transitions */
        .testimonial-item {
            display: none;
            transition: opacity 0.5s ease-in-out;
        }
        .testimonial-item.active {
            display: block;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
        }
        
        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            background-color: white;
            padding: 2rem;
            border-radius: 0.75rem;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.3s;
        }
        .modal-overlay.active .modal-content {
            transform: scale(1);
        }
        .modal-close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #eee;
            border-radius: 9999px;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
        }

        