/* General styles */
body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;
}

body.light-theme {
    background-color: white;
    color: black;
}

body.dark-theme {
    background-color: #333;
    color: snow;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #555;
}

.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .dropbtn {
    background-color: #db3434;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.top-bar .dropbtn:hover {
    background-color: #b92929;
}

.top-bar .logo {
    height: 40px;
}

h1 {
    text-align: center;
    margin: 6vh 0 4vh;
}

.spacer {
    height: 5vh;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.service-list li {
    margin: 0.5rem 0;
}

button.dropbtn {
    display: block;
    margin: 2rem auto;
    background-color: #db3434;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button.dropbtn:hover {
    background-color: #b92929;
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    .top-bar {
        flex-direction: column;
    }

    .top-bar .logo {
        margin-top: 1rem;
    }
}