.footer-section {
	background-color: #ebebeb;
	height: 477px;
	width: 100%;
}

.footer-section-content {
	height: 100%;
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
}

.footer-section-top {
	margin-bottom: 60px;
}

.footer-section-top-field-name {
	height: 48px;
	width: 270px;
	padding: 10px;
	border: none;
	border-radius: 10px;
}

.footer-section-top-heading h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-section-top-field-email {
	height: 48px;
	width: 295px;
	padding: 10px;
	border: none;
	border-radius: 10px;
}

.footer-top-btn {
	background-color: red;
	color: white;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
	height: 45px;
	width: 144;
}

.footer-bottom-btn {
	background-color: red;
	color: white;
	padding: 12px 20px;
	border-radius: 10px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
	height: 45px;
	width: 100;
}

.footer-section-bottom-fourth-column-fields {
	display: flex;
	gap: 6px;
}

.footer-section-bottom-heading {
	font-size: 15px;
	color: #04245c;
	font-weight: bold;
}
.footer-section-bottom-bar p {
	padding: 6px;
}
.footer-section-bottom-third-column p{
	color: black;
}
/* Responsive  */
/* Footer Section Responsive Styles */
@media (max-width: 1200px) {
	.footer-section {
		height: auto;
	}

	.footer-section-content {
		padding: 50px 15px;
	}

	.footer-section-top-heading h2 {
		font-size: 32px;
	}
}

@media (max-width: 992px) {
	.footer-section-top {
		margin-bottom: 40px;
	}

	.footer-section-top-heading h2 {
		font-size: 28px;
	}

	.footer-section-top-fields {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.footer-section-top-field-name,
	.footer-section-top-field-email,
	.footer-top-btn {
		width: 100%;
		max-width: 400px;
	}

	.footer-section-bottom {
		gap: 30px 0;
	}

	.footer-section-bottom-first-column,
	.footer-section-bottom-second-column,
	.footer-section-bottom-third-column,
	.footer-section-bottom-fourth-column {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.footer-section-bottom-fourth-column-fields {
		flex-direction: column;
	}

	.footer-bottom-btn {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.footer-section-top-heading h2 {
		font-size: 24px;
	}

	.footer-section-top-field-name,
	.footer-section-top-field-email {
		height: 42px;
	}

	.footer-top-btn,
	.footer-bottom-btn {
		height: 42px;
		padding: 10px 15px;
	}

	.footer-section-bottom-heading {
		font-size: 14px;
	}

	.footer-section-bottom p {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.footer-section-top-heading h2 {
		font-size: 22px;
	}

	.footer-section-top-field-name,
	.footer-section-top-field-email,
	.footer-top-btn {
		max-width: 100%;
	}

	.footer-section-bottom-first-column,
	.footer-section-bottom-second-column,
	.footer-section-bottom-third-column,
	.footer-section-bottom-fourth-column {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 25px;
		text-align: center;
	}

	.footer-section-bottom-fourth-column-fields {
		max-width: 300px;
		margin: 0 auto;
	}

	.footer-section-bottom-first-column img {
		margin: 0 auto;
		display: block;
	}

	.footer-section-bottom-bar p {
		font-size: 14px;
	}
}

/* Footer Input Focus Styles */
.footer-section-top-field-name:focus,
.footer-section-top-field-email:focus {
	outline: 2px solid #04245c;
}

/* Footer Button Hover Effects */
.footer-top-btn:hover,
.footer-bottom-btn:hover {
	background-color: #d40000;
	transform: translateY(-2px);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Footer Button Active State */
.footer-top-btn:active,
.footer-bottom-btn:active {
	transform: translateY(0);
}
/* Responsive  */
