/* ... (existing styles) ... */

/* Header & Navigation */
.nav-toggle {
    display: none; /* Hide the toggle button by default on all screen sizes */
}

@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center; /* Add this to vertically align items */
    }
    
    .logo {
        order: 1;
    }
    
    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .nav-toggle {
        display: block; /* Override the default to show the button on mobile */
        order: 3;
        font-size: 1.5rem;
        cursor: pointer;
        color: #000;
        background: none;
        border: none;
        margin-left: 15px;
    }
    
    .main-nav {
        display: none; /* Keep this rule to hide the navigation on mobile by default */
        width: 100%;
        order: 4;
        margin-top: 15px;
        border-top: 1px solid var(--border-color);
        padding-top: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul li {
        width: 100%;
        text-align: left;
    }

    .main-nav ul li a {
        padding: 10px 0;
        width: 100%;
        display: block;
    }

    .main-nav.active {
        display: block; /* This rule shows the menu when the button is clicked */
    }
}