/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f0f4f8;
    color: #333;
    scroll-behavior: smooth;
}

section {
    padding: 4rem 2rem;
}

h2.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1E90FF;
}


/* Navbar */
nav.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #1E90FF;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo {
    font-weight: 700;
    font-size: 1.5rem;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav .nav-links li a:hover {
    color: #FFD700;
}

nav .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
}