@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a202c;
    color: #e2e8f0;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    background-color: #f6e05e;
    color: #2d3748;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ecc94b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card {
    background: linear-gradient(145deg, #4c51bf, #667eea);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    background: linear-gradient(135deg, #f6e05e, #f56565);
    border-radius: 50%;
    padding: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: linear-gradient(145deg, #5a67d8, #805ad5);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

/* Animation for floating elements */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}