* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .footer-container {
    max-width: 1170px;
    margin: auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
  }
  ul {
    list-style: none;
  }
  .custom-footer {
    background-color: #f2eee2;
    padding: 30px 0 20px 0px;
    border-radius: 20px;
    margin-top: 20px;
      margin-right: 23px;
      margin-left: 23px;
      margin-bottom: 20px;
  }
  @media (max-width: 767px) {
    .custom-footer {
      margin: 0px;
      padding: 30px 0 5px 0px;
      border-radius: 0px;
    }
  }
  .footer-section {
    width: 20%;
    padding: 0 15px;
  }
  .footer-section-title {
    font-size: 18px;
    color: black;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
  }
  .footer-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #b48146;
    height: 2px;
    width: 90%;
  }
  .footer-section-list li {
    margin-bottom: 10px;
  }
  .footer-section-list li a {
    font-size: 16px;
    text-transform: capitalize;
    color: black;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-section-list li a:hover {
    color: #b48146;
    padding-left: 8px;
  }
  .social-media-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #b48146;
    transition: all 0.5s ease;
  }
  .social-media-links a:hover {
    color: #24262b;
    background-color: #ffffff;
  }
  .divider-line {
    height: 0.5px;
    background-color: #ccc;
    margin: 20px 10px;
    border: none;
  }
  .breadcrumb-nav {
    padding: 0;
    background-color: transparent!important;
    display: inline-block;
    list-style: none;
    margin-bottom: 0px!important;
    font-size: 12px;
    font-family: 'PT Serif', serif;
  }
  .breadcrumb-item {
    display: inline;
    color: #666;
  }
  .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    margin-left: 0px;
    margin-right: 0px;
  }
  .breadcrumb-item.active {
    color: #000000 !Important;
  }
  .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #666;
  }
  .footer-note {
    display: flex;
    justify-content: center;
    font-size: 12px;
  }
  
  /* Mobile view styling */
  @media (max-width: 767px) {
    .footer-section {
      width: 100%;
  
    }
    .footer-section-list {
      display: none;
      overflow: hidden;
      transition: all 0.3s ease;
      padding: 15px;
    }
    .footer-section.active .footer-section-list {
      display: block;
    }
    .footer-section-title {
      margin-bottom: 10px;
    }
    .footer-section-title::after {
      content: '\f107';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      right: 0;
      top: 0;
      font-size: 20px;
    }
    .footer-logo {
      display: block;
      width: 150px;
      margin: 30px auto;
      text-align: center;
      margin-bottom: 0px;
      margin-top: 60px;
    }
  }
  
  /* Hide the accordion functionality on desktop */
  @media (min-width: 768px) {
    .footer-section-title {
      cursor: default;
    }
    .footer-section-list {
      display: block;
      overflow: visible;
    }
    .footer-logo-column {
      width: 25%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
    .footer-logo {
      max-width: 150px;
      width: 100%;
      float: right;
    }
  }