:root {
  --brand-ink: #1f2430;
  --brand-teal: #1f6f78;
  --brand-rose: #80303f;
  --brand-rose-dark: #612431;
  --brand-cream: #f8f6f2;
  --brand-sky: #dcebf0;
}

body {
  color: var(--brand-ink);
  background-color: #ffffff;
}

.header-banner {
  background-color: #009688;
  padding: 20px 0;
  color: #fff;
  text-align: center;
}

.profile-images img {
  width: 100%;
  margin-bottom: 10px;
}

.home-hero {
  background: linear-gradient(145deg, var(--brand-sky), #ffffff 65%);
  border-radius: 0.75rem;
  padding: 2.25rem;
  margin: 2rem 0;
}

.home-hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-hero-subtitle {
  font-size: 1.1rem;
  max-width: 42rem;
}

.home-hero-image {
  border-radius: 0.75rem;
  width: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.quick-link-card,
.feature-card {
  height: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: #fff;
}

.quick-link-card h3,
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.feature-grid {
  margin-top: 2rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--brand-teal), #155661);
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.75rem;
  margin: 2.5rem 0;
}

.btn-brand {
  background-color: var(--brand-rose);
  border-color: var(--brand-rose);
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--brand-rose-dark);
  border-color: var(--brand-rose-dark);
  color: #fff;
}

.site-footer {
  background-color: var(--brand-rose);
  color: #ffffff;
}

.site-footer a {
  color: #f8e9ec;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #ffffff;
  text-decoration: none;
}

.footer-meta {
  background-color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
  .home-hero {
    padding: 1.5rem;
  }

  .home-hero-title {
    font-size: 1.6rem;
  }
}
