* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0e2a;
    color: #e0e7ef;
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 80px 10%;
    text-align: center;
}

h1, h2, h3 {
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
}

h2 {
    font-size: 2.3rem;
}

p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #cfd8e3;
}

html {
    scroll-behavior: smooth;
}