body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
}

h1, h2, h3 {
  font-weight: 600;
}

.card {
  border: none;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.logo {
  height: 70px;
  background: transparent;
}


footer i {
  font-size: 18px;
  margin-right: 6px;
}

footer a:hover {
  text-decoration: underline;
}
.offer-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Logo */

.navbar-brand img {
  transition: 0.3s;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.hero-section {
  padding: 40px 0;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
}

.hero-subtitle {
  color: #0d6efd;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.hero-img {
  width: 220px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-img {
    width: 180px;
  }
}
