
        body {
            font-family: 'Inter', sans-serif;
        }
        .font-display {
            font-family: 'Playfair Display', serif;
        }
        .gradient-text {
            background: linear-gradient(90deg, #0dd98e, #fa276b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .gold-gradient {
            background: linear-gradient(90deg, #fa276b, #d97706);
        }
        .blue-gradient {
            background: linear-gradient(90deg, #0dd98e, #0dd98e);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .accordion-content.active {
            max-height: 500px;
        }
        .testimonial-slider {
            overflow: hidden;
        }
        .testimonial-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        .testimonial-slide {
            min-width: 100%;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }