.custom-footer {
    background-color: #F7E6E1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: auto;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    
}

.footer-socials a {
    margin-right: 10px;
}

.footer-socials img {
    width: 24px;
    height: 24px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.footer-form button {
    background-color: black;
    color: white;
    padding: 8px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #777;
}


/*New Code*/

.footer-dropdown {
  margin-top: 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.footer-dropdown summary {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 20px;
}

.footer-dropdown summary::-webkit-details-marker {
  display: none; /* Removes default arrow */
}

.footer-dropdown summary::after {
  content: "▾"; /* Down arrow */
  position: absolute;
  right: 0;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.footer-dropdown[open] summary::after {
  transform: rotate(180deg); /* Flip when open */
}

.footer-dropdown ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.footer-dropdown ul li {
  margin-bottom: 8px;
}

.footer-dropdown ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}