        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
        }
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: white;
            height: 62px;
            width: 100%;
            padding: 0 20px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        }
        .logo img {
            height: 40px;
            cursor: pointer;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 20px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .nav a, .dropdown {
            text-decoration: none;
            color: black;
            font-size: 16px;
            font-weight: bold;
            padding: 10px;
            transition: color 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
        }
        .nav a:hover {
            color: orange;
        }
        .dropdown {
            position: relative;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            min-width: 300px;
            z-index: 1000;
            grid-template-columns: repeat(2, 1fr);
            gap: 5px;
            padding: 10px;

            max-height: 60vh; /* scrollable */
            overflow-y: auto; /* scroll when needed */
        }
        .dropdown-menu a {
            display: block;
            padding: 10px;
            color: black;
            text-decoration: none;
            font-size: 14px;
            white-space: nowrap;
        }
        .dropdown-menu a:hover {
            background-color: #f1f1f1;
        }
        .dropdown:hover .dropdown-menu {
            display: grid;
        }
.quote-btn {
    background-color: orange;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.quote-btn:visited,
.quote-btn:hover,
.quote-btn:active {
    text-decoration: none;
}

.quote-btn:hover {
    background-color: #e67e00;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: black;
}

@media (max-width: 900px) {
    .nav {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        transform: none; /* <-- Add this */
        justify-content: flex-start; /* Optional: aligns items to the left */
        flex-direction: column;
        background-color: white;
        padding: 20px;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
        z-index: 100;

        max-height: calc(100vh - 62px); /* subtract header height */
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        padding: 0;
        margin-top: 5px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .quote-btn {
        display: none;
    }
}