a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .container {
    padding: 0 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FBBF24;
  color: #0a3d62;
  font-weight: 800;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-sizing: border-box;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 46px rgba(0,0,0,.28);
  filter: saturate(1.05);
}

