@media only screen and (max-width: 767px) {
	body {
		margin:0;
	}
	li {
		margin-bottom: 0;
	}
	.main-container {
		min-width: unset;
		max-width: unset;
		border: none;
		border-radius: 0;
	}
	.menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 25px;
		font-weight:700;
        color: #333333;
        padding: 10px;
    }
	body.menu-active .nav-links {
        display: block;
    }
    .nav-links {
        display: none;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: absolute; /* Position the menu absolutely */
        top: 60px; /* Adjust top position to avoid overlapping with the button */
        right: 0; /* Align the menu to the right */
        width: 150px; /* Set a fixed width for the menu */
    }
    .nav-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .nav-links ul li {
        text-align: left;
        padding: 15px;
        border-bottom: 1px solid #ddd;
		width: 80%;
    }
    .nav-links ul li:last-child {
        border-bottom: none;
    }
    .nav-links a {
        text-decoration: none;
        color: #333333;
        display: block;
        font-size: 16px;
        font-weight: 500;
    }
    .nav-links.active {
        display: block;
    }
	
	.service {
		width: auto;
		margin-bottom: 20px;
	}
}