/* Main Stylesheet */

/* Utilities */
.u-dn {
  display: none !important;
}

/* Premium Services Section */
.premium-services {
  position: relative;
  width: 100%;
  background-image: url("../images/backgrounds/bg-3.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 2.5rem 1rem;
}

.premium-services__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.premium-services__title {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.premium-services__title img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.premium-services__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.premium-services__grid img {
  width: 100%;
  height: auto;
}

.premium-services__cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media (max-width: 480px) {
  .premium-services {
    padding: 2rem 0.75rem;
  }

  .premium-services__grid {
    gap: 0.75rem;
  }

  .premium-services__cta {
    margin-top: 1.5rem;
  }
}