/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff, #00bfff);
    padding: 100px 0;
}

/* Card Hover Effect */
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #ff6f61, #ffcc00); /* Different gradient */
}
