* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sansita', sans-serif;
    line-height: 1.6;
}

/* Header and Navbar Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5vw 10vw;
    background-color: #FF7720;
    z-index: 1000;
    transition: transform 0.3s ease;
}

header::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    bottom: -4px;
    left: 0;
}

header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
    transition: top 0.3s;
}

nav .logo {
    font-size: 1.5rem;
    font-family: 'Sansita', sans-serif;
    color: white;
    text-decoration: none;
}

nav .logo a {
    text-decoration: none;
}

nav .logo a:visited {
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: "Sansita", serif;
}

nav ul li a.active {
    text-decoration: underline;
}

/* Section Styles */
section {
    padding: 20px;
    text-align: center;
}


/* Footer Styles */
footer {
    background-color: #FF7720;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}

