
    body { font-family: 'Segoe UI', sans-serif; }
    .hero {
      background: linear-gradient(135deg, #0d6efd, #0dcaf0);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
    }
    .hero h1 { font-size: 42px; font-weight: 700; }
    .cta-btn { margin: 10px; padding: 12px 28px; font-size: 18px; border-radius: 30px; }
    .section { padding: 60px 20px; }
    .card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
    }
    .card:hover { transform: translateY(-5px); }
    .icon { font-size: 40px; margin-bottom: 10px; color: #0d6efd; }
    .sticky-call {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #000;
      color: #fff;
      text-align: center;
      padding: 12px;
      font-size: 18px;
    }
    .badge-offer {
      background: #ffc107;
      color: #000;
      padding: 5px 10px;
      border-radius: 5px;
      font-weight: bold;
    }
	
	
	
	.social-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
}

.fb { background: #1877f2; }
.insta { background: #e4405f; }
.wa { background: #25d366; }
  