.apple-nav {
	background: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
}

.apple-nav ul {
	
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px; /* Adjust as needed */
    height: 44px;
}

.apple-nav li {
    display: flex;
    align-items: center;
}

.apple-nav a {
    color: #f5f5f7; /* Light off-white text */
    text-decoration: none;
    font-size: 12px;
    padding: 0 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.apple-nav a:hover {
	
    opacity: 1;
}

/* Styling for the Font Awesome icons */
.apple-nav a i {
    font-size: 16px; /* Adjust icon size as needed */
}
