/* === Base === */
body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* === Header === */
header {
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-title h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #0077b6;
}

nav a {
  color: #0077b6;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  color: #005f8d;
  transform: translateY(-1px);
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #e0f2ff, #f7faff);
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.hero h2 {
  font-size: 2rem;
  color: #023e8a;
}

.hero p {
  max-width: 600px;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
  color: #444;
}

.button {
  background-color: #0077b6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #005f8d;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* === Section Headings === */
section {
  margin: 3rem 0;
}

h2 {
  color: #023e8a;
  text-align: center;
  font-size: 1.8rem;
}

/* === Lists === */
ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 1rem auto;
}

ul li {
  background: white;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* === Provider Cards === */
.provider-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.provider-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  width: 320px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.provider-card img {
  margin-bottom: 0.75rem;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.provider-card:hover img {
  transform: scale(1.05);
}

.provider-card h4 {
  margin-top: 0.25rem;
  color: #0077b6;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 2rem 0;
  background: #023e8a;
  color: white;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    text-align: center;
  }

  .logo-area {
    flex-direction: column;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .provider-card {
    width: 90%;
  }
}

/* ===== BLOG STYLES ===== */
.blog-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-post {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.blog-post h2 {
  color: #0066cc;
  margin-top: 0;
}

.blog-post .date {
  color: #888;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.blog-post p {
  line-height: 1.6;
  color: #333;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.read-more:hover {
  color: #005f8d;
  transform: translateY(-1px);
  text-decoration: underline;
}


