* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Calibri, sans-serif;
	background: linear-gradient(135deg, #f9f7f3, #eef0f3);
	color: #333;
	line-height: 1.7;
	padding: 20px;
}

.container {
	max-width: 1020px;
	margin: 40px auto;
	padding: 60px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid #eaeaea;
}

h1 {
	font-size: 2.8em;
	color: #2c3e3e;
	text-align: center;
	margin-bottom: 50px;
	font-weight: 700;
}

.tour-section {
	margin-bottom: 40px;
}

.tour-section:last-child {
	margin-bottom: 0;
}
h2 {
	font-size: 1.6em;
	color: #2c3e3e;
	padding-bottom: 12px;
	border-bottom: 2px solid #dfe6e9;
	font-weight: 600;
	display: inline-block;
}

h3 {
	color: #34495e;
	font-size: 1.15em;
	font-weight: 600;
	margin: 0 0 10px;
}

p {
	margin: 14px 0;
	color: #455a64;
	font-size: 1.05em;
}

ul {
	padding-left: 15px;
	list-style-type: none;
}

ul li::before {
	content: "•";
	color: #3498db;
	font-weight: bold;
	display: inline-block;
	width: 1em;
}

li {
	margin: 8px 0;
	color: #455a64;
}

.highlight {
	background-color: #f0f7ff;
	padding: 15px;
	border-left: 4px solid #4a90e2;
	font-style: italic;
	margin: 20px 0;
}

.banner {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 30px 0;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	display: block;
	transition: transform 0.3s ease;
}

.banner:hover {
	transform: scale(1.02);
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 35px 0;
	font-size: 0.95em;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	overflow: hidden;
}

table th {
	background: #34495e;
	color: white;
	font-weight: 600;
	padding: 16px 18px;
	text-align: left;
}

table td {
	padding: 14px 18px;
	border-bottom: 1px solid #ecf0f1;
}

table tr:nth-child(even) {
	background-color: #f8f9fa;
}

table tr:last-child td {
	border-bottom: none;
}

table tr:hover {
	background-color: #f1f5f9;
}