/* Footer Main Container */
.footer {
	width: 100%;
	background: #f6f8fa;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 32px 16px;
	box-sizing: border-box;
}

h3.footer__terms-title{
	margin-bottom: .75rem;
}

/* Footer Container */
.footer__container {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Footer Content */
.footer__content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}

/* Footer Left Section */
.footer__left {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Footer Logo */
.footer__logo {
	width: 142px;
	height: 50px;
	display: flex;
	align-items: center;
}

.footer__logo img {
	width: 51.82px;
	height: 40px;
}

/* Footer Information Section */
.footer__info {
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: left;
}

.footer__title {
	color: #0a0a0a;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5rem;
}

.footer__subtitle {
	color: #565656;
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.5rem;
}

/* Footer Contact Details */
.footer__contact {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__phone-link {
	color: #1d4ed8;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.footer__email-link {
	color: #696969;
	font-size: 0.95rem;
	font-weight: 400;
	text-decoration: none;
}

/* Footer Terms Section */
.footer__terms {
	text-align: left;
	display: flex;
	flex-direction: column;
}

.footer__terms h4 {
	color: #0a0a0a;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5rem;
	margin-bottom: 12px;
}

.footer__terms-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__terms-list li a {
	color: #565656;
	font-size: 1rem;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__terms-list li a:hover {
	color: #1d4ed8;
}

/* Footer Bottom Section */
.footer__bottom {
	text-align: center;
	color: #666;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.5rem;
	padding-top: 10px;
	border-top: 1px solid #0000001a;
	width: 100%;
	margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.footer__content {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.footer__left,
	.footer__terms {
		width: 100%;
		text-align: left;
	}

	.footer__terms h4 {
		text-align: left;
	}

	.footer__terms-list {
		align-items: left;
	}
}
