.contactus {
  padding: 48px 0;
}

.contactus-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contactus-features {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.contactus-features .item {
  padding: 25px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  min-height: 180px;
  min-width: 240px;
  flex: 1;

  box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.contactus-features .item .icon {
  border-radius: 14px;
  width: 45px;
  height: 45px;
  background: #101828;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.35s ease, background 0.35s ease;
  margin-bottom: 20px;

}

.contactus-features .item .icon img {
  width: 25px;
}

.contactus-features .item:hover .icon {
  transform: scale(1.06) rotate(3deg);
  background: #000;
}

.contactus-features .item h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  color: #101828;
  text-align: start;
  margin-bottom: 6px;
}

.contactus-features .item h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  text-align: start;
  color: #101828;
  margin-bottom: 6px;
  max-width: 190px;

}

.contactus-features .item p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 156%;
  text-align: start;
  color: #4a5565;
}

.contactus-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contactus-info .image {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0);
  border-radius: 24px;
  width: 45%;
  min-width: 380px;
  height: 442px;
  background: #98a7af;
  color: #fff;
}

.contactus-info-right {
  flex: 1;
  min-width: 400px;
}

.contactus-info-right .section-title,
.contactus-info-right .section-subtitle {
  text-align: start;
}

.contactus-info-right .section-subtitle {
  margin-bottom: 10px;
}







.deliver {
  position: relative;
  border-radius: 24px;
  padding: 64px;
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  border: 1px solid #bedbff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #eff6ff 0%, #ecfeff 100%);
}


.deliver .section-title {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #101828;
  margin-bottom: 20px;
}

.deliver p {
  position: relative;
  z-index: 2;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #4a5565;
  text-align: center;
  max-width: 700px;
  margin-bottom: 20px;
}

.deliver .locations {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.deliver .locations .item {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 156%;
  text-align: center;
  color: #101828;
  padding: 10px 20px;

  border-radius: 50px;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: #fff;
}


@media (max-width: 900px) {
  .deliver {
    justify-content: flex-start;
    padding: 40px 34px;
  }

  .deliver img {
    opacity: 0.5;
  }

  .deliver button {
    max-width: 100%;
    padding: 20px 0;
  }
}

@media (max-width: 500px) {
  .deliver {
    justify-content: flex-start;
    gap: 20px;
    padding: 40px 24px;
  }
  .deliver .locations .item {
    flex: 1;
  }
}