body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
    margin: 0;
    padding: 0;
}

header {
    background: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    flex: 1;
    text-align: center;
}

header nav ul li.right {
    margin-left: auto;
}

header nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

header nav ul li a:hover {
    background: #555;
}

header .logo {
    height: 30px; /* Anpassung der Höhe */
    margin-left: 20px;
}

header .dropdown {
    position: relative;
    display: inline-block;
}

header .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

header .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

header .dropdown-content a:hover {
    background-color: #f1f1f1;
}

header .dropdown:hover .dropdown-content {
    display: block;
}

header .user-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.content {
    width: 60%;
}

#top-berater {
    width: 35%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#top-berater img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

#click-to-call button {
    background: #007bff;
}

#click-to-call button:hover {
    background: #0056b3;
}

#login-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
}

#login-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#login-form form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#login-form form button {
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

#login-form form button:hover {
    background: #218838;
}

footer {
    background: #333;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-links a:hover {
    color: #ddd;
}
