/* 🌟 Custom styling for FindWay */
body {
  background-color: #f4f9fb;
  scroll-behavior: smooth;
}

.btn-lg {
  border-radius: 50px;
  font-weight: 500;
}

header img {
  max-width: 200px;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

.card-icon {
  color: #35aee2;
}

.card-title {
  color: #333;
  font-weight: 600;
}

.card-text {
  color: #666;
}

.hero {
  background: url('/images/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  color: white;
  padding: 120px 20px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* затемнение */
  z-index: 1;
}

.hero h1, .hero .btn {
  position: relative;
  z-index: 2;
}

.btn-lg {
  transition: all 0.3s ease;
}

.btn-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section {
  background: #f9fbfd;
  border-top: 1px solid #e6ecf0;
}
