@charset "utf-8";

/* ================================
   GLOBAL TYPOGRAPHY & BASE
   ================================ */
body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #fafafa;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.site-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}


/* ================================
   HERO — CONNECT™ PREMIUM LAYOUT
   ================================ */
.hero {
  text-align: center;
  margin: 60px auto 70px;
  padding: 60px 20px;
  max-width: 960px;

  /* CONNECT™ Signature Gradient */
  background: linear-gradient(
    135deg,
    #f7faff 0%,
    #eef4ff 40%,
    #e8f0ff 100%
  );
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.hero-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 25px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #111;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
  color: #444;
}

/* ================================
   SECTION HEADINGS + DIVIDERS
   ================================ */
.resource-section {
  margin-bottom: 70px;
}

.resource-section h2 {
  margin-top: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e5e5;
  position: relative;
}

.resource-section h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #005bbb; /* CONNECT™ Accent */
}

/* ================================
   RESPONSIVE CARD GRID
   ================================ */
.resource-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 30px;
}

@media (min-width: 640px) {
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .resource-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================
   RESOURCE CARDS
   ================================ */
.resource-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

.resource-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.resource-card p {
  max-width: 720px;
  color: #444;
  margin-bottom: 16px;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-block;
  padding: 10px 16px;
  background: #005bbb;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.25