@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

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

/* Hero section height adjustment for mobile */
@media (max-width: 768px) {
    section.relative {
        height: auto;
        padding: 6rem 0;
    }
}

/* Calculator input focus styles */
input:focus {
    outline: 2px solid #00A0B0;
    outline-offset: 2px;
}

/* Animation for the advantage cards */
.bg-white {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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