.site-header {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.logo-title {
    
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.site-logo {
    height: 150px;
    width: 180px;
    border-radius: 8px;
}

.site-title {
    font-size: 24px;
    margin: 0;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    padding: 10px 15px;
    background: #f1f1f1;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-menu a:hover {
    background: #007bff;
    color: white;
}
