* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

body {
  background: #0e0e0e;
  color: #ffffff;
}

/* Wrapper */
.contactWrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Card */
.contactBox {
  width: 100%;
  max-width: 480px;
  background: #1a1a1a;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Heading */
.contactBox h1 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #ffd24c;
}

/* Paragraph */
.contactBox p {
  font-size: 15px;
  line-height: 1.6;
  color: #dddddd;
  margin-bottom: 20px;
}

/* Contact Info */
.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.infoItem span {
  display: block;
  font-size: 13px;
  color: #aaaaaa;
}

.infoItem a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.infoItem a:hover {
  color: #ffd24c;
}

/* Internal Links */
.backLinks {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.backLinks a {
  font-size: 14px;
  color: #ffd24c;
  text-decoration: none;
}

.backLinks a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
  .contactBox {
    padding: 20px;
  }

  .contactBox h1 {
    font-size: 22px;
  }

  .contactBox p {
    font-size: 14px;
  }
}
