/* Custom styles for Atlantis Aviation Academy */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    line-height: 1.2;
}

.container {
    max-width: 1200px;
}

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

/* Form input focus styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Responsive typography */
@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

/* Custom bullet points for Why Choose Us section */
ul.custom-bullets li {
    position: relative;
    padding-left: 1.5em;
}

ul.custom-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}