 h2.section-title {
      text-align: center;
      margin-bottom: 25px;
      font-size: 2rem;
      font-weight: 600;
    }
    /* Grid cards */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .card:hover { transform: translateY(-8px); }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card-content {
      padding: 20px;
    }
    .card-content h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    .card-content p {
      font-size: 0.95rem;
      margin-bottom: 15px;
      color: #666;
    }
    .btn {
      display: inline-block;
      padding: 10px 18px;
      background: #d4af37;
      color: #fff;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s;
    }
    .btn:hover { background: #b9972f; }

    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 100;
      background: #25D366;
      padding: 12px;
      border-radius: 50%;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    }
    .whatsapp-float img {
      width: 28px;
      height: 28px;
    }
    .whatsapp-chat-bubble {
      position: fixed;
      bottom: 20px;
      right: 80px;
      background: #25D366;
      color: #fff;
      padding: 10px 16px;
      border-radius: 20px;
      font-size: 14px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    }

    /* Back to Top */
    #back-to-top {
      position: fixed;
      bottom: 90px;
      right: 20px;
      display: none;
      background: #111;
      color: #fff;
      padding: 10px 14px;
      border-radius: 50%;
      text-decoration: none;
      font-size: 16px;
    }
    :root{
      --brand:#0f8f68; /* premium green */
    }
      .site-header .navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}
