.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #d63384;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 15px 20px;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.blog-content h3 a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: #d63384;
}

.read-more {
  display: inline-block;
  margin-top: auto;
  font-weight: 600;
  color: #3873c1;
  text-decoration: none;
}

.read-more:hover {
  color: #104285;
}

/* Blog Details */
.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.featured-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 25px;
  object-fit: cover;
  max-height: 420px;
}

.blog-title {
  font-size: 36px;
  color: #222;
  margin-bottom: 10px;
}

.meta-info {
  font-size: 14px;
  color: #999;
}

.blog-body {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.blog-body h2 {
  margin-top: 35px;
  font-size: 24px;
  color: #163e73;
}

.content-img {
  width: 100%;
  margin: 20px 0;
  border-radius: 10px;
}

blockquote {
  font-style: italic;
  background: #ff930033;
  border-left: 4px solid #f79e1b;
  margin: 25px 0;
  padding: 15px 20px;
  font-size: 16px;
  color: #555;
  border-radius: 6px;
}

.cta-box {
  background: #ff930033;
  border: 1px dashed #104285;
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.cta-box h3 {
  color: #104285;
  font-size: 22px;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 15px;
  color: #555;
}

.btn-contact {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 25px;
  background: #104285;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #1853a3;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 26px;
  }
  .blog-body h2 {
    font-size: 20px;
  }
}