/* Custom styles for landing page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Hero gradient background */
.hero-section {
    background: linear-gradient(135deg, hsl(220, 70%, 25%) 0%, hsl(220, 60%, 35%) 50%, hsl(220, 50%, 45%) 100%);
}

/* Section gradient background */
.section-gradient {
    background: linear-gradient(180deg, hsl(220, 13%, 97%) 0%, hsl(220, 13%, 91%) 100%);
}

/* Smooth transitions */
button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
    transform: translateY(-2px);
}

/* Card hover effect */
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}
