.destination-card {
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .destination-card.large-card {
    height: 100%;
    min-height: 420px;
  }
  
  .destination-card:hover {
    transform: scale(1.03);
  }
  
  .destination-name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  }


  /* 2nd design */
  .apartment-service-section {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .image-wrapper {
    position: relative;
    padding: 30px;
  }
  
  .background-shape {
    position: absolute;
    top: 30px;
    left: 0;
    width: 90%;
    height: 90%;
    background-color: #ff5c5c;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    border-radius: 8px;
  }
  
  .service-image {
    position: relative;
    z-index: 2;
    border-radius: 8px;
  }
  
  .content-container {
    padding: 20px;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ff5c5c;
    margin-bottom: 20px;
  }
  
  .section-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
  }
  
  .feature-list {
    list-style: none;
    padding-left: 0;
  }
  
  .feature-list li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #333;
    display: flex;
    align-items: center;
  }
  
  .feature-list i {
    color: #ff5c5c;
    font-size: 20px;
    margin-right: 10px;
  }
  
  /* Responsive */
  @media (max-width: 767px) {
    .image-wrapper {
      padding: 0;
      margin-bottom: 30px;
    }
  
    .background-shape {
      clip-path: none;
      border-radius: 0;
      height: 100%;
      width: 100%;
    }
  
    .section-title {
      font-size: 26px;
    }
  
    .section-text {
      font-size: 16px;
    }
  
    .feature-list li {
      font-size: 15px;
    }
  }
  
  
  .h2{
    color: #ff5c5c;
  }

  /* new section */
  .top-destinations {
    border: 2px solid #ff5c5c;
    box-shadow: 0 8px 20px rgba(255, 92, 92, 0.2);
    border-radius: 12px;
    background-color: #fff; /* optional: light background to lift it up */
    padding: 20px;
  }
  .apartment-service-section {
    background-color: #fff5f5; /* light pinkish tone */
    padding: 40px 0;
    border-radius: 12px;
  }
  
    