/* =========================================
   CONTACT PAGE — Unique styles
   ========================================= */

main {
	margin: 20px;
	height: auto;
	display: flex;
	justify-content: space-evenly;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
}

.div1 {
	border: 1px solid #b8997a;
	border-radius: 2%;
	width: 25%;
	height: 40%;
	padding: 30px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	transition: background-color 0.2s ease;
}

.div1:hover {
	background-color: rgba(184, 153, 122, 0.05);
}

.div1 p {
	font-size: 18px;
	text-align: center;
	color: #dbccbd;
}

.div1 p a {
	color: #b8997a;
	text-decoration: none;
}

.div1 p a:hover {
	color: #ecd4bb;
}

/* ── Mobile ── */
@media (max-width: 420px) {
	.div1 {
		max-width: 90%;
		width: 90%;
	}
}
