.maincontent {
        max-width: 100%;
        width: 100%;
        padding: 0;
        border: 0;
    }  

 /* Location Selector */
    .location-selector-wrapper {
        background: #f7f7f7;
        padding: 25px 5%;
        border-bottom: 2px solid #e0e0e0;
    }

    .location-selector {
        display: flex;
        justify-content: center;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .location-tab {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px 30px;
        background: white;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        color: #666;
        cursor: pointer;
        transition: all 0.3s;
    }

    .location-tab svg {
        fill: #666;
        transition: fill 0.3s;
    }

    .location-tab:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .location-tab:hover svg {
        fill: var(--accent-color);
    }

    .location-tab.active {
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: white;
        box-shadow: 0 4px 15px rgba(235, 115, 35, 0.3);
    }

    .location-tab.active svg {
        fill: white;
    }

    /* Location Content */
    .location-content {
        display: none;
    }

    .location-content.active {
        display: block;
    }

    .contact_info_wrap {
        float: left;
        position: relative;
        width: 49%;
    }

    .map_wrap {
        margin: 0px 0px 20px 0px;
        float: right;
        position: relative;
        text-align: center;
        width: 49%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .contact-icon {
        fill: var(--accent-color);
    }

    .tablestyle a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s;
    }

    .tablestyle a:hover {
        color: var(--accent-color);
    }

.boxheader {
	background: #2b2b2b;
	color: white;
	padding: 7px 20px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 8px 8px 0 0;
}

    .boxbody {
        background: white;
        padding: 25px 20px;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 8px 8px;
    }

    @media (max-width: 768px) {
        .contact-banner h1 {
            font-size: 36px;
        }

        .contact-subtitle {
            font-size: 16px;
        }

        .location-selector {
            flex-direction: column;
            gap: 12px;
        }

        .location-tab {
            width: 100%;
        }

        .contact_info_wrap {
            float: none;
            width: 100%;
            margin-bottom: 20px;
        }

        .map_wrap {
            margin: 12px 0 0 0;
            float: none;
            width: 100%;
        }
    }


    .btn.btn-primary {
        padding: 12px 0;
        text-transform: uppercase;
        font-weight: 700;
        width: 35%;
        border: 3px solid var(--accent-color);
        color: var(--accent-color);
        background-color: transparent;
        transition: all 0.3s;
    }

    .btn.btn-primary:hover {
        background-color: var(--accent-color);
        color: #ffffff;
    }