@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    padding-top: 1rem;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Animation for hover effects */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Custom blue gradient */
.bg-blue-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

/* Section padding consistency */
section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Responsive typography */
@media (min-width: 768px) {
    .text-hero {
        font-size: 3.5rem;
        line-height: 1.2;
    }
}