.gift-page {
	background: #fff;
	color: #1a1a1a;
}

.gift-page * {
	box-sizing: border-box;
}

.gift-page h1,
.gift-page h2,
.gift-page h3 {
	color: #000;
	font-family: "Outfit", "Open Sans", Arial, sans-serif;
}

.gift-hero {
	padding: 72px 20px;
	background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
	text-align: center;
}

.gift-hero-inner {
	max-width: 900px;
	margin: 0 auto;
}

.gift-hero h1 {
	margin: 0 0 16px;
	font-size: 44px;
	font-weight: 700;
	line-height: 1.2;
}

.gift-hero p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 20px;
	line-height: 1.6;
}

.gift-btn {
	display: inline-block;
	margin-top: 32px;
	padding: 12px 26px;
	border-radius: 8px;
	background: #ed615a;
	color: #fff;
	border: 1px solid #ed615a;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.2s ease;
}

.gift-btn:hover {
	background: #d44d47;
	border-color: #d44d47;
	color: #fff;
}

.gift-main {
	max-width: 1140px;
	margin: 0 auto;
	padding: 64px 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.gift-image img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	border: 1px solid #e9ecef;
}

.gift-content h2 {
	margin-top: 0;
	font-size: 34px;
	line-height: 1.2;
}

.gift-content p {
	font-size: 19px;
	line-height: 1.7;
}

.gift-steps {
	padding: 64px 20px;
	background: #f8f9fa;
}

.gift-steps h2 {
	text-align: center;
	margin-top: 0;
}

.gift-steps-grid {
	max-width: 1140px;
	margin: 28px auto 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.gift-step-item {
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 20px;
	background: #fff;
}

.gift-step-number {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #ed615a;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 12px;
}

.gift-step-item h3 {
	margin: 0 0 10px;
}

.gift-step-item p {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.gift-hero h1 {
		font-size: 36px;
	}

	.gift-main,
	.gift-steps-grid {
		grid-template-columns: 1fr;
	}
}