.holiday-offers-wrapper {
	background: #f8fbff;
	padding-top: 50px;
	padding-bottom: 80px;
	color: #333;
	font-family: "Poppins", sans-serif;
}

.offer-section-heading h1 {
	text-align: center;
	font-size: 2.2rem;
	color: #1aa7ff;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}

.offer-section-heading h1::after {
	content: "";
	display: block;
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #1aa7ff, #ff4e4e);
	margin: 10px auto 0;
	border-radius: 5px;
}

.offer-main-image {
	display: flex;
	justify-content: center;
	margin: 20px 0 50px;
}

.offer-main-image img {
	width: 80%;
	border-radius: 10px;
	box-shadow: 0 5px 25px rgba(26, 167, 255, 0.15);
}

/* General Text Styling */
.offer-text {
	line-height: 1.7;
	color: #444;
	font-size: 16px;
}

.holiday-subheading {
	color: #1aa7ff;
	font-weight: 700;
	font-size: 1.8rem;
	margin-bottom: 20px;
	text-align: center;
}

.offer-subtitle {
	font-size: 1.3rem;
	font-weight: 600;
	color: #1aa7ff;
	margin-top: 30px;
}

.offer-list,
.offer-list-numbered {
	margin-top: 10px;
	padding-left: 25px;
}

.offer-list li,
.offer-list-numbered li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.offer-list.centered {
	text-align: center;
	list-style: none;
	padding-left: 0;
}

.offer-highlight {
	color: #ff4e4e;
	font-weight: 700;
}

/* Cards */
.holiday-cards {
	margin-top: 40px;
	justify-content: center;
}

.offer-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(26, 167, 255, 0.15);
	transition: all 0.3s ease;
}

.offer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(26, 167, 255, 0.25);
}

.offer-card-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.offer-card-body {
	text-align: center;
	padding: 15px;
}

.offer-card-text {
	margin-top: 10px;
	background: #f1faff;
	padding: 15px;
	border-radius: 8px;
}

.offer-card-text a {
	color: #1aa7ff;
	text-decoration: none;
	transition: 0.3s;
}

.offer-card-text a:hover {
	color: #ff4e4e;
}

/* Buttons */
/* Buttons */
.offer-btn {
	display: inline-block;
	padding: 10px 25px;
	background: linear-gradient(90deg, #1aa7ff, #4cd3ff);
	color: #fff;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(26, 167, 255, 0.25);
	border: 1px solid transparent;
    text-decoration: none;
}

.offer-btn:hover {
	background: #fff;
	color: #1aa7ff;
	border: 1px solid #1aa7ff;
	box-shadow: 0 5px 15px rgba(26, 167, 255, 0.2);
	transform: translateY(-2px);
}

.offer-btn.large {
	padding: 12px 40px;
	font-size: 18px;
}

/* Detail Section */
.holiday-details {
	margin-top: 60px;
	background: #ffffff;
	padding: 30px 25px;
	border-radius: 10px;
	box-shadow: 0 6px 30px rgba(26, 167, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
	.offer-main-image img {
		width: 100%;
	}
	.offer-card {
		margin-bottom: 20px;
	}
	.holiday-subheading {
		font-size: 1.5rem;
	}
	.offer-section-heading h1 {
		font-size: 1.8rem;
	}
}
