/* Fees section */
.fees-section {
	padding: 80px 0;
	background-color: #F8F9FA;
}

.fees-section-title {
	font-size: 48px;
	font-weight: 700;
	color: #1A1A1A;
	margin-bottom: 24px;
}

.fees-intro {
	font-size: 16px;
	line-height: 1.8;
	color: #1A1A1A;
	margin-bottom: 48px;
	max-width: 800px;
}

.fees-wrapper {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: flex-start;
}

.fees-subtitle {
	font-size: 24px;
	font-weight: 700;
	color: #1A1A1A;
	margin-bottom: 24px;
}

.fees-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fees-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 16px;
	line-height: 1.6;
	color: #1A1A1A;
}

.fees-arrow {
	color: #0070C1;
	font-size: 18px;
	flex-shrink: 0;
}

.fees-notes-title {
	font-size: 18px;
	font-weight: 700;
	color: #1A1A1A;
	margin-bottom: 16px;
}

.fees-notes {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fees-note-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 15px;
	line-height: 1.8;
	color: #1A1A1A;
}

.fees-image {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.fees-image img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1024px) {
	.fees-wrapper {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 768px) {
	.fees-section {
		padding: 60px 0;
	}

	.fees-section-title {
		font-size: 32px;
	}
}
