* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 5;
}

.navbar img {
    height: 50px;
    width: 100px;
    margin-left: 3rem;
}

.nav-links {
    flex: 1;
    text-align: center;
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.icons {
    margin-right: 10px;
    display: flex;
    gap: 1rem;
}

.icon-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.header {
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.breadcrumbs {
    padding: 15px 40px;
    background: #f5f5f5;
}