       .footer {
       	background-color: #212121;
       	color: #999;
       	padding: 60px 0 0 0;
       	font-size: 14px;
       	line-height: 1.6;
       }

       .footer-content {
       	margin: 0 auto;
       	display: grid;
       	grid-template-columns: 26% 16% 26% 1fr;
       	gap: 40px;
       	padding: 0 0px 40px 0px;
       }

       .footer-section h3 {
       	color: #fff;
       	font-size: 25px;
       	margin-bottom: 20px;
       	font-weight: 500;
       }

       .logo {
       	display: flex;
       	align-items: center;
       	margin-bottom: 20px;
       }

       .logo-icon {
       	width: 30px;
       	height: 30px;
       	background-color: #c4965f;
       	margin-right: 10px;
       	position: relative;
       	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
       }

       .logo-icon::after {
       	content: '';
       	position: absolute;
       	top: 50%;
       	left: 50%;
       	transform: translate(-50%, -50%);
       	width: 12px;
       	height: 12px;
       	background-color: #2c2c2c;
       	border-radius: 50%;
       }

       .brand-name {
       	color: #fff;
       	font-size: 24px;
       	font-weight: 300;
       	letter-spacing: 1px;
       }

       .brand-subtitle {
       	color: #999;
       	font-size: 12px;
       	text-transform: uppercase;
       	letter-spacing: 2px;
       	margin-left: 40px;
       }

       .footer-section ul {
       	list-style: none;
       }

       .footer-section ul li {
       	margin-bottom: 3px;
       }

       .footer-section ul li a {
       	color: #999;
       	text-decoration: none;
       	transition: color 0.3s ease;
       	display: flex;
       	align-items: center;
       }

       .footer-section ul li a:hover {
       	color: #c4965f;
       }

       .footer-section ul li a::before {
       	/* content: ''; */
       	width: 6px;
       	height: 6px;
       	background-color: #c4965f;
       	border-radius: 50%;
       	margin-right: 10px;
       }

       .social-links ul {
       	display: flex;
       	gap: 4px;
       }

       .social-links a {
       	width: 40px;
       	height: 40px;
       	/* background-color: #404040; */
       	border-radius: 50%;
       	display: flex;
       	align-items: center;
       	justify-content: center;
       	color: #999;
       	text-decoration: none;
       	transition: all 0.3s ease;
       }

       .social-links a:hover {
       	color: #fff;
       }

       .contact-info {
       	display: flex;
       	align-items: center;
       	margin-bottom: 15px;
       }

       .contact-info .icon {
       	width: 20px;
       	height: 20px;
       	margin-right: 10px;
       	background-color: #c4965f;
       	border-radius: 50%;
       	display: flex;
       	align-items: center;
       	justify-content: center;
       	font-size: 10px;
       }

       .newsletter-form {
       	margin-top: 20px;
       	position: relative;
       	border: 1px solid transparent;
       }

       .newsletter-form input[type="email"] {
       	width: 100%;
       	padding: 14px;
       	background-color: #303030;
       	border: none;
       	border-radius: 4px;
       	color: #fff;
       	font-size: 15px;
       	border: 1px solid #ffffff12;
       }

       .newsletter-form input[type="email"]::placeholder {
       	color: #999;
       }

       .newsletter-form button {
       	background-color: #c4965f;
       	color: #fff;
       	border: none;
       	padding: 10px 20px;
       	border-radius: 4px;
       	cursor: pointer;
       	font-size: 15px;
       	transition: background-color 0.3s ease;
       	position: absolute;
       	top: 50%;
       	right: 10px;
       	transform: translateY(-50%);
       }

       .newsletter-form button:hover {
       	background-color: #b8894d;
       }

       .newsletter-form .checkbox-wrapper {
       	display: flex;
       	align-items: center;
       	margin-bottom: 15px;
       }

       .newsletter-form input[type="checkbox"] {
       	margin-right: 10px;
       }

       .newsletter-form label {
       	font-size: 12px;
       	color: #999;
       }

       .footer-bottom {
       	padding: 20px 0;
       	text-align: center;
       	color: #666;
       	font-size: 12px;
       	background: #333333;
       }

       .footer-bottom-content {
       	padding: 0 20px;
       	font-size: 17px;
       	color: #ffffff5e;
       }

       .footer-section h2 {
       	color: #fff;
       	margin-bottom: 15px;
       	font-weight: 300;
       }

       .footer-section p {
       	padding-bottom: 3px;
       }
.social-links {
    margin-top: 10px;
}
       .footer-section p a {
       	color: #ADADAD;
       	margin-left: 10px;
       	display: inline-block;
       }
.footer-section ul li {
    display: flex;
    gap: 0px 5px;
}

.footer-section ul li a {
    flex: 1;
    display: inline-block;
}
.footer-section.section3 ul li {
    align-items: start;
}

.footer-section.section3 ul li img {
    margin-top: 5px;
}
.footer-section ul li img {object-fit: contain;}
       @media(max-width:990px) {
       	.footer-section .logo img {
       		height: 54px;
       	}

       	.footer {
       		padding-top: 30px;
       	}
       }

       @media (max-width: 768px) {
       	.footer-content {
       		grid-template-columns: 1fr;
       		gap: 10px;
       	}
       }

       .footer-section {
       	font-size: 16px;
       }

       .brand-name img {
       	padding: 0px 20px 0px;
       }

       .contact-info span {
       	flex: 1;
       }