.destination-page {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	color: #333;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
section {
	padding: 60px 0;
}
.section-hero {
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	height: 400px;
	display: flex;
	align-items: center;
}
.hero-overlay {
	background: rgba(0,0,0,0.4);
	width: 100%;
	padding: 40px 0;
}
.usp-grid {
	display: flex;
	justify-content: space-between;
	text-align: center;
}
.usp-item {
	flex: 1;
	padding: 20px;
	background: #f9f9f9;
	margin: 0 10px;
}
.offers-grid, .regions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.offer-placeholder, .region-card {
	border: 1px solid #ddd;
	padding: 15px;
	text-align: center;
	background: #fff;
}
.faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.section-cta {
	background: #0073aa;
	color: #fff;
	text-align: center;
}
.btn {
	display: inline-block;
	padding: 10px 25px;
	border-radius: 5px;
	text-decoration: none;
	margin: 10px;
}
.btn-primary { background: #fff; color: #0073aa; font-weight: bold; }
.btn-secondary { border: 2px solid #fff; color: #fff; }
.breadcrumb-nav ul { list-style: none; padding: 15px 0; display: flex; font-size: 0.9em; }
.breadcrumb-nav li + li:before { content: " / "; padding: 0 10px; }

/* TBE2 Loading Spinner */
.tbe-loading {
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.tbe-loading:after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #0073aa;
	border-color: #0073aa transparent #0073aa transparent;
	animation: tbe-lds-dual-ring 1.2s linear infinite;
}
@keyframes tbe-lds-dual-ring {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
