/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #062628;
    color: #ffffff;
    padding: 10px 20px; /* Reduced padding for compactness */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #138086;
}

.hamburger {
    font-size: 1.5rem;
    cursor: pointer;
    display: none; /* Hidden by default, shown on mobile */
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #138086;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #062628;
        flex-direction: column;
        padding: 10px 0;
    }

    .navbar.active {
        display: flex;
    }

    .navbar ul li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
}