body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #495057;
    color: #dee2e6;
    /* Light gray text for contrast */
}

header {
    background-color: #212529;
    color: #00ff7f;
    padding: 0.3em;
    text-align: center;
}

nav {
    background-color: #495057;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

li {
    float: left;
}

a {
    display: block;
    color: #dee2e6;
    text-align: center;
    padding: 12px 16px;
    text-decoration: none;
}

a:hover {
    background-color: #6c757d;
    color: #dee2e6;
    transition: background-color 0.3s ease;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #007bff;
    box-shadow: 0 8px 16px 0 rgba(36, 1, 1, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #343a40;
    /* Darker gray for content background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h2 {
    color: #00ff7f;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

p {
    line-height: 1.6;
    color: #dee2e6;
}

.dropdown-content a:visited {
    color: #000000;
}

#sticky-footer {
    background-color: #343a40;
    color: #dee2e6;
    text-align: center;
    padding: 0.5em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    border-top: 2px solid #007bff;
}

a.mail {
    color: #dee2e6;
}

.logo img {
    width: 50px;
    height: auto;
}

sup {
    font-size: smaller;
    font-weight: bold;
    color: #00ff7f;
    text-decoration: none;
    cursor: pointer;
    margin-left: 10px;
}

body {
    color: #343a40;
}

footer {
    background-color: #495057;
    color: #dee2e6;
    text-align: center;
    padding: 1em;
    border-top: 2px solid #007bff;
}