/* ===================================
   CONTACT PAGE SPECIFIC STYLES
   =================================== */

/* Panel */
.panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Contact Items */
.item {
  padding: 22px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.item h3 {
  margin: 0 0 10px;
  color: #0f172a;
}

/* Media Queries */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .panel,
  .item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-buttons {
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
