.contactSection {
  background: #0a192f;
  padding: 90px 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.contactContainer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

/* Header */
.contactHeader h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.contactHeader p {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Cards */
.contactCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.25s ease, border 0.25s ease;
}

.contactCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.contactCard h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contactCard p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

/* Lists */
.contactCard ul {
  padding-left: 18px;
  margin-top: 8px;
}

.contactCard li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* Channels */
.channel {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.channel span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.channel a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

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

/* Muted */
.muted {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
}

/* CTA */
.contactCTA {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.contactCTA h3 {
  margin-bottom: 10px;
}

.contactCTA p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.contactBtn {
  margin-top: 18px;
  padding: 12px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contactBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 600px) {
  .contactHeader h2 {
    font-size: 30px;
  }

  .contactCTA {
    text-align: left;
  }
}
