main {
	min-height: calc(100vh - 240px);
}

main h1 {
	text-align: center;
	margin-bottom: 20px;
	color: #E52423;
}

main p {
	width: 70%;
	margin: 0 auto 20px auto;
	text-align: justify;
	line-height: 1.6;
}

.clim-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 70%;
	margin: 40px auto;
	gap: 30px;
}

.clim-section img {
	width: 50%;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
	object-fit: cover;
}

.clim-text {
	flex: 1;
	display: flex;
	justify-content: center;
}

.clim-text table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.clim-text th,
.clim-text td {
	padding: 12px;
	text-align: center;
	border: 1px solid #ddd;
}

.clim-text thead th {
	background-color: #E52423;
	color: white;
	font-size: 1.1rem;
}

.clim-text tbody th {
	background-color: #f1f1f1;
	font-weight: 600;
}

.note {
	font-size: 0.9rem;
	font-style: italic;
	color: #444;
	width: 70%;
	margin-top: 10px;
}

@media screen and (max-width: 860px) {
	.clim-section {
		flex-direction: column-reverse;
		width: 90%;
	}

	.clim-section img {
		width: 100%;
	}

	.clim-text table {
		width: 100%;
		margin-top: 20px;
	}
}