.left-image-right-content-wrapper {
  gap: 100px;
}

.text-gold {
  color: var(--primary-color);
}

.right-content {
  color: var(--text-color);
  padding: 30px 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-links a {
  color: var(--black-color);
  text-decoration: none;
  font-family: "Playfair Display", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px 30px;
  background-color: #fff;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.contact-links a:first-child {
  background-color: rgb(194, 182, 151);
}

.contact-links a.arrow {
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-links .arrow {
  font-size: 17px;
}

.contact-links a:hover {
  background-color: rgb(194, 182, 151);
  color: var(--black-color);
}

.contact-links a:hover .arrow {
  transform: rotate(45deg);
  color: var(--black-color);
}

.contact-links:hover a:not(:hover) {
  background-color: #fff;
}

@media (max-width: 991px) {
  .left-image-right-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .left-image-right-content-left{
    width: 100% !important;
  }

  .left-image-right-content-right{
    width: 100% !important;
  }

  .custom-title{
    font-size: 40px;
    line-height: 50px;
  }

  .right-content{
    padding: 20px 0;
  }

  .contact-links a {
    background-color: #fff !important; 
    color: var(--black-color) !important; 
    padding: 33px 0; 
  }

  .contact-links a:hover,
  .contact-links:hover a:not(:hover) {
    background-color: #fff !important;
    color: var(--black-color) !important;
  }

  .contact-links a .arrow {
    transform: rotate(45deg); 
  }

  .contact-links a:hover .arrow {
    transform: rotate(45deg); 
  }
  
}

@media(max-width: 576px) {
    .custom-title{
        font-size: 32px;
        line-height: 42px;
    }

    .contact-links a{
        font-size: 26px;
        padding: 20px 0;
    }

    .contact-links .arrow {
        font-size: 14px;
      }
}