@media only screen and (max-width: 767px) {
	 .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: center;
        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;
    }
	section {
		padding: 5% 5% 10% 5%;
	}

	.footer {
		display: flex;
		flex-direction: column;
		margin-bottom: 20px;
	}
	.footer-links {
		padding-left: 0;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	
	.footer-links div {
		margin-top: 20px;
	}
	.footer-text {
		flex-wrap: wrap;
		text-align: center;
	}
	.footer-social {
		width: 100%;
		justify-content: space-evenly;
	}
}