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

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    color: #fff;
}

/* Mobile Menu Animation */
#mobileMenu {
    transition: all 0.3s ease;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 24px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* 404 Page Styles */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: bold;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.error-page h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.error-page p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.error-page a {
    background-color: #1e3a8a;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.error-page a:hover {
    background-color: #1e40af;
}