/* 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;
}


/* Footer */
footer {
    background: #1E90FF;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
}