.site-footer {
	background-color: #fff;
	padding: 60px 30px;
	color: #000;
}

.newsletter-icon {
	width: 50px;
	height: 50px;
}

.newsletter h3 {
	margin: 0;

	font-size: 28px;
	font-weight: 600;
}

.newsletter p {
	margin: 5px 0 0;
	font-size: 16px;
}

hr {
	margin: 40px 0; /* Adds vertical space between sections */
	border: none;
	border-top: 1px solid #eee;
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto; /* Center the columns container */
}

.footer-col {
	flex: 1;
	min-width: 200px;
}

.footer-col h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 8px;
}

.footer-col ul li a {
	text-decoration: none;
	color: #000;
}

.footer-col p {
	margin: 8px 0;
}

.social-links li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.social-links img {
	width: 18px;
	height: 18px;
}

.newsletter {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin: 80px 125px 60px;
}

.newsletter-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.newsletter-text h3 {
	margin: 0;
	font-size: 28px;
	font-weight: 600;
}

.newsletter-text p {
	margin: 5px 0 0;
	font-size: 16px;
	color: #666;
}

.newsletter-form {
	display: flex;
	align-items: center;
	gap: 10px;
}

.newsletter-form input[type="email"] {
	padding: 12px 18px;
	border: 1px solid #ccc;
	border-radius: 30px;
	font-size: 14px;
	width: 450px;
	outline: none;
	transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
	border-color: var(--primary-blue);
	box-shadow: 0 0 5px rgba(13, 45, 69, 0.2);
}

.newsletter-form button {
	padding: 12px 22px;
	background-color: var(--primary-blue);
	color: #fff;
	border: none;
	border-radius: 30px;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
	background-color: var(--dark-pink);
}

.footer-social-media-btns:hover {
	color: var(--primary-blue);
	background-color: var(--dark-pink);
	border-radius: 20%;
}

