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

body {
    font-family: sans-serif; /* Use your preferred font */
}

/* Header Styles */
header {
    width: 100%;
    box-shadow: 0 2px 4px rgba(84, 165, 131, 0.1);
    padding: 0 20px; /* Adjusted padding */
    position: fixed;
    top: 0;
    left: 0;
    color: #ffffff;
    background-color: #464646; /* Assuming this is your preferred header background color */
    z-index: 1000; /* Ensure header stays on top of other content */
}

/* Make sure the ul is full width and centered */
nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between; /* This will distribute space around items */
    align-items: center;
    height: 100%; /* Set to the height of your header */
}

nav ul li a {
    font-weight: bold;
    color: #00ff73; /* Gold color */
}

/* Footer styles, assuming you want them similar to the header */
footer p {
    color: #00ff73; /* Gold color for text */
}

/* Header categories and links */
.header-right,
.header-categories {
    display: flex;
    align-items: center;
    justify-content: center; /* This centers the child elements horizontally */
    background-color: #E3FEF7;
    padding: 0;
    width: 100%; /* Ensure it spans the full width of its container */
    margin-top: 70px;
}

.header-categories {
    gap: 2px; /* Adjust the gap to your preference */
}

.header-link {
    text-decoration: none;
    color: #000000; /* Gold text */
    padding: 20px 30px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin: 0 10px; /* Adjust the spacing between links as necessary */
}

.header-link:hover {
    background-color: #003C43; /* Slightly lighter gold shade for hover effect */
    color: white;
}
