
/* General Reset */
body, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fbfd;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
section.hero {
  background: linear-gradient(135deg, #eaf3ff, #ffffff);
  padding: 60px 20px;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1d3557;
}

.hero p {
  font-size: 1.25rem;
  color: #5a5a5a;
  margin-bottom: 1.5rem;
}

.hero .btn-primary {
  background-color: #0077cc;
  border: none;
}

.hero .btn-outline-primary {
  border-color: #0077cc;
  color: #0077cc;
}

/* Buttons */
.btn {
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Cards */
.feature-card, .provider-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-card h4, .provider-card h5 {
  font-weight: 600;
  color: #1d3557;
}

/* Footer */
footer {
  background-color: #f1f3f5;
  color: #666;
}

footer a {
  color: #888;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Text helpers */
.text-muted {
  color: #6c757d !important;
}

.text-primary {
  color: #0077cc !important;
}

/* AOS Animations */
[data-aos] {
  transition-property: opacity, transform;
}

/* Sections */
section {
  padding: 60px 0;
}

/* Typography */
h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

p.lead {
  font-size: 1.125rem;
}

/* Announcement Banner */
.bg-primary {
  background-color: #0077cc !important;
}
