 /* Add these styles inside your existing <style> tag */
 .footer-section {
     background-color: #2C1810;
     padding: 80px 40px 0;
     color: white;
 }

 .footer-logo {
     width: 150px;
     height: auto;
     margin-bottom: 24px;
 }

 .footer-description {
     color: #ffffff99;
     margin-bottom: 24px;
     font-size: 14px;
 }

 .social-links {
     display: flex;
     gap: 16px;
 }


 .footer-title {
     color: white;
     font-size: 20px;
     margin-bottom: 24px;
     font-weight: 600;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links li {
     margin-bottom: 16px;
 }

 .footer-links a {
     color: #ffffff99;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: white;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .contact-item img {
     width: 24px;
     height: 24px;
 }

 .contact-item p {
     color: #ffffff99;
     font-size: 14px;
 }

 .contact-item a {
     color: white;
     text-decoration: none;
     font-weight: 500;
 }

 .footer-bottom {
     margin-top: 60px;
     padding: 20px;
     border-top: 1px solid #ffffff1a;

 }

 .copyright {
     color: #ffffff99;
     margin: 0;
 }

 @media (max-width: 991px) {
     .footer-bottom {
         flex-direction: column;
         gap: 24px;
         text-align: center;
     }
 }

 /* Layout and containers */
 .container {
     position: relative;
     max-width: 1440px;
     padding: 0 40px;
 }

 /* Grid utilities */
 .grid-2-cols {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 16px;
 }

 /* Footer specific styles */
 .footer-contact-card {
     display: flex;
     align-items: center;
     gap: 8px;
     background: rgba(255, 255, 255, 0.28);
     border-radius: 10px;
     padding: 15px;
     height: 70px;
 }

 .footer-contact-text {
     color: white;
     font-size: 12px;
     text-decoration: none;
 }

 .footer-social-links {
     display: flex;
     gap: 16px;
     align-items: flex-end;
     justify-content: space-between;
 }

 .footer-app-links {
     width: 80%;
 }

 .footer-app-links-wrapper {
     display: flex;
     gap: 16px;
 }

 /* Closing timer styles */
 .closing-in {
     display: flex;
     gap: 8px;
 }

 .closing-in-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 10px;
     min-width: 80px;
     border-radius: 16px;
     border: 1px solid #F8CB2E;
 }

 .closing-in-number,
 .closing-in-label {
     font-size: 12px;
 }

 /* Footer columns */
 .footer-col-links {
     display: flex;
     gap: 115px;
     margin-bottom: 24px;
 }

 .footer-contact-wrapper {
     display: flex;
     flex-direction: column;
     width: 80%;
     margin-bottom: 24px;
 }