
.language-switcher {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end; /* Align buttons to the right on larger screens */
}
.language-btn {
	background-color: #ff6f61; /* Match the "Contact Us" button color */
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px 15px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.language-btn:hover {
	background-color: #e65b50; /* Match the hover effect of "Contact Us" button */
}
/* Default: Hide language switcher in the menu for larger screens */
.language-switcher-mobile {
	display: none;
}

/* Mobile: Show language switcher under the Contact tab */
@media (max-width: 768px) {
	.language-switcher {
	display: none;
	}
	.language-switcher-mobile {
		display: flex;
		flex-direction: column;
		align-items: left;
		gap: 10px;
		margin-top: 10px;
	}
}