.harmony-blog-section {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

.harmony-blog-heading {
    background: #1e84b5;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
}

.harmony-blog-card {
    background: #EAF5FB;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    cursor: pointer;
}
.harmony-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 18px rgba(0,0,0,0.12);
}

.harmony-blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.harmony-blog-title {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #002B5B;
}
.harmony-blog-title a {
    color: #002B5B;
    text-decoration: underline;
}
.harmony-blog-title a:hover {
    text-decoration: none;
}

.fresh-breath-section {
  background: linear-gradient(135deg, #e8f9ff, #ffffff);
  border-top: 3px solid #1e84b5;
  border-bottom: 3px solid #1e84b5;
  color: #333;
  position: relative;
  overflow: hidden;
}

.fresh-breath-section .rating-box {
  font-size: 1.2rem;
  color: #f5a623;
}

.fresh-breath-section .stars {
  font-size: 1.5rem;
  color: #ffcc00;
}

.fresh-breath-section .rating-text {
  margin-left: 0.5rem;
  font-weight: 500;
  color: #555;
}

.fresh-breath-section h2 {
  color: #005b8f;
}

.fresh-breath-section .cta-buttons .btn {
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
}

.fresh-breath-section .btn-primary {
  background-color: #1e84b5;
  border-color: #1e84b5;
}

.fresh-breath-section .btn-primary:hover {
  background-color: #008ecc;
  border-color: #008ecc;
}

.fresh-breath-section .btn-outline-success {
  border-color: #1e84b5;
  color: #1e84b5;
}

.fresh-breath-section .btn-outline-success:hover {
  background-color: #28a745;
  color: #fff;
}

.fresh-breath-section .hashtags {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* ✅ Responsive Tweaks */
@media (max-width: 576px) {
  .fresh-breath-section h2 {
    font-size: 1.4rem;
  }
  .fresh-breath-section .lead {
    font-size: 1rem;
  }
  .fresh-breath-section .cta-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

