 .footer {
      background-color: #7b1818;
      color: #f5f1e6;
      padding: 50px 0;
	 margin: 0;
    }
    
/*     .container {
      margin: 0 auto;
      padding: 0 2rem;
    } */
    
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
    }
    
    .footer-logo {
      flex: 1;
      min-width: 200px;
    }
    
    .logo-container {
      background-color: white;
      padding: 10px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 1rem;
    }
    
    .footer-logo img {
      width: 180px;
    }
    
    .footer-links {
      flex: 1;
      min-width: 160px;
    }
    
    .footer-contact {
      flex: 1;
      min-width: 200px;
    }
    
    h4 {
      font-size: 1.2rem !important;
      margin-bottom: 1.5rem !important;
      position: relative;
      display: inline-block;
			color: #f5f1e6;
    }
    
    h4:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 40px;
      height: 2px;
      background-color: #f5f1e6;
    }
    
    ul {
      list-style: none !important;
    }
    
    ul li {
      margin-bottom: 0.8rem;
    }
    
    a {
      color: #f5f1e6;
      text-decoration: none;
      transition: opacity 0.3s;
    }
    
    a:hover {
      opacity: 0.8;
    }
    
    .contact-info {
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
    }
    
    .contact-info i {
      margin-right: 10px;
      font-size: 16px;
    }
    
    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: rgba(245, 241, 230, 0.1);
      border-radius: 50%;
      transition: background-color 0.3s;
    }
    
    .social-icons a:hover {
      background-color: rgba(245, 241, 230, 0.2);
    }
    
    .footer-bottom {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(245, 241, 230, 0.2);
      text-align: center;
      font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
      }
      
      .footer-logo, .footer-links, .footer-contact {
        width: 100%;
      }
    }