.section-title {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 40px;
	color: #1a405e;
	position: relative;
}
.section-title:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #2c5f8a;
	margin: 15px auto 0;
}

.contacts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 60px;
}
.contact-card {
	background: white;
	border-radius: 20px;
	padding: 25px;
	transition: all 0.2s;
	border: 1px solid #e2e8f0;
	position: relative;
	overflow: hidden;
}
.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
	border-color: #2c5f8a;
}
.country-badge {
	position: absolute;
	top: 0;
	right: 0;
	background: #2c5f8a;
	color: white;
	padding: 5px 15px;
	font-size: 0.7rem;
	font-weight: 600;
	border-radius: 0 0 0 20px;
}
.contact-card h3 {
	color: #1a405e;
	margin-bottom: 5px;
	padding-right: 80px;
}
.contact-card .city {
	color: #2c5f8a;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 0.9rem;
}
.contact-card .address {
	color: #5a6e7e;
	margin-bottom: 15px;
	font-size: 0.9rem;
	line-height: 1.4;
}
.contact-detail {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #e2e8f0;
}
.contact-detail i {
	width: 24px;
	color: #2c5f8a;
	margin-right: 10px;
}
.contact-detail a {
	color: #1a405e;
	text-decoration: none;
}
.contact-detail a:hover {
	color: #2c5f8a;
	text-decoration: underline;
}

.feedback-section {
	background: #f8fafe;
	border-radius: 28px;
	padding: 40px;
	margin: 40px 0;
	text-align: center;
}
.feedback-section h3 {
	color: #1a405e;
	margin-bottom: 20px;
}

.feedback-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}

.feedback-btn {
	padding: 12px 30px;
	border-radius: 40px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: white;
}
.feedback-btn.facebook {
	background: #4267b2;
}
.feedback-btn.telegram {
	background: #0088cc;
}
.feedback-btn.whatsapp {
	background: #25d366;
}
.feedback-btn.email {
	background: #2c5f8a;
}
.feedback-btn.twitter {
	background: #0f1419;
}
.feedback-btn.instagram {
	background: #833ab4;
	background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}
.feedback-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}
