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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
}

.hero {
    background-color: #eee;
    color: #000000;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-bottom: 1px solid #ddd;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

section p {
    font-size: 1.1em;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

ul li a:hover {
    text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #666;
    color: #fff;
    padding: 10px;
    border-radius: 0%;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s;
}

.scroll-to-top:hover {
    background-color: #333;
}
