        /* Custom Styles */
        body {
            font-family: 'Inter', sans-serif;
            color: #374151;
        }
        html {
            scroll-behavior: smooth;
        }
        .cta-button {
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-2px);
        }
        .header-blue { background-color: #007AFF; }
        .button-green { background-color: #34C759; }
        .button-green:hover { background-color: #2da34a; }
        .benefit-icon-bg { background-color: #E0F2F7; }
        .testimonial-bg { background-color: #2E8B57; color: white; }
        .footer-links a {
            margin: 0 0.75rem;
            color: #6B7280;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #1F2937;
        }
        #mobile-menu {
            background-color: #007AFF;
        }
        #mobile-menu a {
            color: white;
            padding: 12px 24px;
            border-bottom: 1px solid #0062CC;
        }
        #mobile-menu a:last-child {
            border-bottom: none;
        }
        #mobile-menu a:hover {
            background-color: #0062CC;
        }
        #mobile-menu .cta-button-mobile {
            background-color: #34C759;
            color: white;
            text-align: center;
            margin: 10px 20px;
            padding: 10px;
            border-radius: 8px;
        }
        #mobile-menu .cta-button-mobile:hover {
            background-color: #2da34a;
        }