﻿/* === Layout ile hizalı === */
.feedback-wrapper {
	width: 93.75%;
	margin-left: 1.55%;
	margin-top: 24px;
	padding: 0;
}

	/* Başlık */
	.feedback-wrapper h2 {
		font-weight: 600;
		font-size: 28px;
		margin-bottom: 18px;
	}

	/* Metin */
	.feedback-wrapper p {
		font-size: 16px;
		line-height: 1.7;
		color: #333;
	}

	/* Mail Link */
	.feedback-wrapper a {
		color: #b40e25; /* Taç kırmızısına yakın */
		font-weight: 600;
		text-decoration: underline;
		transition: .25s ease;
	}

		.feedback-wrapper a:hover {
			color: #7e0a1a;
		}

/* Responsive */
@media(max-width: 768px) {

	.feedback-wrapper h2 {
		font-size: 22px;
	}

	.feedback-wrapper p {
		font-size: 15px;
	}
}
