.contact-layout2 {
    padding: 20px;
  }
  
  .contact-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-panel__info {
    background: #fff;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
  }
  
  .contact-panel__title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .contact-panel__desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .contact__list {
    list-style: none;
    padding: 0;
  }
  
  .contact__list li {
    margin-bottom: 10px;
  }
  
  .contact__list i {
    margin-right: 10px;
    color: #f8c026;
  }
  
  .contact__list a {
    color: #fff;
    text-decoration: none;
  }
  
  .contact__list a:hover {
    text-decoration: underline;
  }
  
  .bg-img img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* 🌐 Desktop View */
  @media (min-width: 768px) {
    .contact-panel {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
  
    .contact-panel__info {
        max-width: 500px;
    }
  }