.contact-buttons-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.contact-btn {
	display: inline-flex;
	padding: 12px 24px;
	border-radius: 2px;
	text-decoration: none;
	font-family: 'Instrument Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
	line-height: 1.2;
}

.contact-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* Button 1 (Solid) */
.contact-btn-1 {
	background-color: #12a08e;
	color: #fff;
	border: 1.5px solid transparent;
}

/* Button 2 (Outline) */
.contact-btn-2 {
	background-color: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.contact-btn-2:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}
