.thankyou-section {
	min-height: 72vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
}
.thankyou-card {
	background: #fff;
	border-radius: var(--b-radius);
	padding: 60px 50px;
	max-width: 560px;
	width: 100%;
	text-align: center;
	box-shadow: 0 4px 32px rgba(18, 43, 29, 0.08);
	position: relative;
	overflow: hidden;
}
.thankyou-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 5px;
	background: var(--secondary-color);
	border-radius: var(--b-radius) var(--b-radius) 0 0;
}
.thankyou-icon {
	width: 72px;
	height: 72px;
	background: hsl(145 45% 93%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 28px;
}
.thankyou-icon svg {
	width: 36px;
	height: 36px;
	stroke: var(--primary-color);
	stroke-width: 2.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.thankyou-icon svg path {
	stroke-dasharray: 60;
	stroke-dashoffset: 60;
	animation: draw-check 0.55s ease forwards 0.2s;
}
@keyframes draw-check {
	to { stroke-dashoffset: 0; }
}
.thankyou-card h1 {
	font-size: var(--pages-h1);
	color: var(--heading-color);
	margin: 0 0 12px;
	line-height: 1.2;
}
.thankyou-card p {
	color: var(--secondary-text-color);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 32px;
}
.thankyou-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
.btn-outline {
	padding: 8px 25px;
	font-size: 15px;
	border-radius: 5px;
	border: 1.5px solid var(--primary-color);
	color: var(--primary-color);
	background: none;
	font-family: var(--font-family);
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition);
	display: block;
	width: fit-content;
}
.btn-outline:hover {
	background: hsl(145 45% 93%);
}
.thankyou-divider {
	border: none;
	border-top: 1px solid #e9ede9;
	margin: 36px 0 28px;
}
.thankyou-note {
	font-size: 13px;
	color: var(--text-color);
	margin: 0;
}
@media (max-width: 600px) {
	.thankyou-card {
		padding: 44px 24px;
	}

	.thankyou-card h1 {
		font-size: var(--pages-h1-mobile);
	}
}
.thankyou-divider {
	border: none;
	border-top: 1px solid #e9ede9;
	margin: 32px 0 24px;
}
.thankyou-contact {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.thankyou-contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--primary-color);
	font-weight: 500;
	transition: var(--transition);
}

.thankyou-contact-item:hover {
	color: var(--secondary-color);
}

.thankyou-contact-item svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}

@media (max-width: 600px) {
	.thankyou-contact {
		flex-direction: column;
		align-items: center;
		gap: 14px;
	}
}