body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    align-items: center;
    background-color: #fdfbfb;
    padding: 10px;
}

nav .logo img {
    height: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    /*margin-left: auto;*/
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: rgb(8, 8, 8);
    text-decoration: none;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
}

.bodyA {
    padding: 20px;
}

.instruments-section {
    margin-bottom: 40px;
}

.instruments-section h4 {
    margin-bottom: 10px;
}

.images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.images-row img {
    max-width: 150px;
    height: auto;
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* Black background with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 50px 0;
    color: #333;
    font-family: Arial, sans-serif;
    border-top: 1px solid #eaeaea;
}

footer {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    padding: 40px; 
    background-color: #f8f9fa; 
    border-top: 2px solid #ddd; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer h4 {
    margin-bottom: 15px; 
    font-size: 1.5em; 
    color: #007bff;
    text-align: center;
}

footer p {
    font-size: 0.9em; 
    line-height: 1.6; 
    color: #555;
}

footer div {
    flex: 1; min-width: 250px; margin-right: 20px;
}

footer ul {
    list-style-type: none; padding: 0; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 15px;
}

footer li {
    flex: 1 0 150px; text-align: left;
}

footer a:hover {
    background-color: #e0e0e0; /* Light grey background */
    color: #0056b3; /* Darker text color on hover */
    border-radius: 5px; /* Rounded corners */
}

