  /* Color Variables */
  :root {
    --secondary-color: #f1faee;
    --dark-color: #a82767;
    --light-color: #f1faee;
    --text-color: #333;
    --white: #fff;
  }

  /* Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* Footer Styles */
  .footer {
    background-color: var(--dark-color);
    color: var(--secondary-color);
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 2rem;
  }

  .footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #f1faee;
  }

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

  .footer-column ul li {
    margin-bottom: 0.8rem;
  }

  .footer-column ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .footer-column ul li {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .footer-column ul li a:hover {
    color: #f1faee;
    transform: translateX(5px);
  }

  .footer-column ul li:hover {
    color: #f1faee;
    transform: translateX(5px);
  }

  .footer-column p {
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .footer-column p a {
    color: #f1faee;
    text-decoration: none;
    font-weight: 600;
  }

  /* Map Styles */
  .map {
    padding: 5px;
    padding-bottom: 0px;
    width: 90%;
    border: 2px solid var(--white);
    border-radius: 8px;
  }

  .map iframe {
    width: 100%;
    height: 120px;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Right Column Layout */
  .right_column {
    flex: 2;
    display: flex;
    flex-direction: column;
  }

  .maisonFooter {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  /* Footer Bottom Section */
  .text_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 2px solid rgba(244, 237, 237, 0.1);
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .Copyright p,
  .Design p {
    color: var(--light-color);
    font-size: 0.9rem;
  }

  .Copyright span,
  .Design span {
    color: #f1faee;
    font-weight: 600;
  }




  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }

    .footer-column {
      min-width: 100%;
    }

    .text_footer {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }


  }


