body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.wrapper {
    max-width: 800px;
    width: 95%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 10px auto;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

header .logo img {
    height: 40px;
}

nav {
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

nav a:hover {
    color: lightgray;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu {
    display: none;
    flex-direction: column;
    background-color: #34495e;
    position: absolute;
    top: 60px;
    right: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 150px;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
}

.menu a:hover {
    background-color: #1abc9c;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .menu {
        display: none;
    }

    .menu.active {
        display: flex;
    }
}

.container {
    padding: 1rem;
}

section {
    display: none;
}

section.active {
    display: block;
}

a {
    text-decoration: none;
    color: darkgray;
}

a:hover {
    color: gray;
}

.form-link {
    display: block;
    text-align: center;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.form-link:hover {
    background-color: #34495e;
}
