.finsdemy-footer {
	background-color: #ffffff;
	color: #d6e2f0;
	font-family: inherit;
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
	gap: 40px;
	padding: 60px 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO */
.footer-logo img {
	width: 220px;
}

/* MENU BLOCK */
.footer-menu-title h2 {
	font-size: 16px;
	font-weight: 700;
	color: #023061;
	margin-bottom: 14px;
}

.footer-menu-subtitle h4 {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color: #023061;
	margin-bottom: 12px;
}

/* LIST */
.footer-menu-subtitle ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu-subtitle ul li {
	margin-bottom: 10px;
}

.footer-menu-subtitle ul li a {
	font-size: 14px;
	color: #023061;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease, transform 0.2s ease;
}

.footer-menu-subtitle ul li a:hover {
	color: #023061;
	transform: translateX(4px);
}

/* ICON */
.footer-menu-subtitle ion-icon {
	font-size: 16px;
	color: #023061;
}

.footer-bot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 80px;
}

.footer-bot-left p {
	font-size: 13px;
	color: #023061;
}

/* SOCIAL */
.footer-bot-right {
	display: flex;
	gap: 16px;
}

.footer-bot-right a {
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #023061;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-bot-right a:hover {
	background-color: #023061;
	transform: translateY(-3px);
	color: #ffffff;
}

.footer-bot-right ion-icon {
	font-size: 18px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
		padding: 50px 40px;
	}

	.footer-bot {
		padding: 20px 40px;
	}
}

@media (max-width: 640px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bot {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}
