.contact-page {
  min-height: 100vh;
}

/* Hero Title */
.contact-hero {
  text-align: left;
  padding: 54px 40px 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: #28354d;
  margin: 0;
}

/* Cards Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 40px;
}

.contact-card {
  background: rgba(81, 90, 205, 0.07);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
}

/* Different background for each card */
.contact-card:nth-child(2) {
  background: rgba(255, 96, 62, 0.07);
}
.contact-card:nth-child(3) {
  background: rgba(248, 206, 28, 0.07);
}
.contact-card:nth-child(4) {
  background: rgba(0, 133, 220, 0.07);
}

/* Avatar styling */
.contact-card .avatar {
  width: 95.5px;
  height: 56px;
}
.contact-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom row: text + arrow */
.contact-card .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.contact-card .content h3 {
  margin: 0 0 4px;
  font-size: 32px;
  font-weight: 500;
  color: #28354d;
  letter-spacing: -1%;
}
.contact-card .content p {
  margin: 0;
  color: rgba(40, 53, 77, 0.8);
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -1%;
}
.contact-card .arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.contact-card .arrow img {
  width: 100%;
  height: 100%;
}

/* Footer */
.contact-footer {
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 32px;
}
.contact-footer a {
  color: #425466;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
}
.contact-footer a:hover {
  color: #6b46c1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-page {
    overflow-y: scroll;
  }

  .contact-hero {
    padding: 60px 20px 40px;
  }
  .contact-hero h1 {
    font-size: 36px;
    text-align: left;
  }
  .contact-cards {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
    margin-bottom: 50px;
  }

  /* ---- */
  .contact-footer {
    position: relative;
    padding-top: 0px;
  }
}
