#fw-section-header {

a{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styles */
.header {
    position: fixed; /* Keeps it at the top */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Adjust as needed */
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000; /* Ensures it stays on top */
}

/* Navigation menu styles */
.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-menu a:hover {
    color: #ffcc00; /* Change color on hover */
}

/* Push content down so it's not hidden behind the fixed header */
body {
    padding-top: 60px; /* Matches the height of the header */
}
}