* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.footer {
    color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #80ff9c; /* Combined border-width, style, and color into one line */
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer h2 {
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: #80ff9c; /* Change to your desired link color */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.footer-links a:hover {
    color: rgb(255, 255, 255); /* Change to your desired hover text color */
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.8em;
    color: #bbb;
}
