.contact-shell {
  max-width: 980px;
}

.contact-intro {
  text-align: center;
  color: #fff;
  margin-bottom: 32px;
}

.contact-intro h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 12px 28px rgba(46, 23, 95, 0.28);
}

.contact-intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.contact-card,
.contact-note {
  background: rgba(246, 241, 255, 0.92);
  border: 1px solid rgba(216, 204, 242, 0.9);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(46, 23, 95, 0.12);
  color: #2e175f;
}

.contact-card h3,
.contact-note h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-card p,
.contact-note p {
  margin: 0;
  line-height: 1.8;
  color: #4f3b82;
}

.contact-mail-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(122, 99, 227, 0.1);
  color: #5e45c5;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(122, 99, 227, 0.2);
  transition: all 0.2s ease;
}

.contact-mail-link:hover {
  background: rgba(122, 99, 227, 0.16);
  color: #2e175f;
  border-color: rgba(122, 99, 227, 0.34);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: #4f3b82;
  line-height: 1.7;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7a63e3;
  box-shadow: 0 0 0 5px rgba(122, 99, 227, 0.12);
}

.contact-note a {
  color: #5e45c5;
  font-weight: 700;
  text-decoration: none;
}

.contact-note a:hover {
  color: #2e175f;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-note {
    padding: 22px 18px;
  }

  .contact-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
