/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: #f5f7fb;
  color: #1f2937;
  line-height: 1.8;
}

/* =========================
   HEADER
========================= */
.connect-header {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #fff;
}

.connect-header .logo {
  width: 180px;
  margin-bottom: 10px;
}

.connect-header .hero-email {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #fffb;
}

.connect-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.connect-header p {
  font-size: 1.1rem;
  color: #e0e7ff;
}

/* =========================
   CONNECT SECTION
========================= */
.connect-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.connect-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.connect-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.connect-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.connect-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #334155;
}

.connect-btn {
  display: inline-block;
  padding: 12px 35px;
  background: #2563eb;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
}

.connect-btn:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
}

/* =========================
   FOOTER
========================= */
.connect-footer {
  text-align: center;
  padding: 25px;
  background: #0f172a;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .connect-header h1 {
    font-size: 2rem;
  }

  .connect-container {
    grid-template-columns: 1fr;
  }
}