html, body {
  height: 100%;
  margin: 0;
  background: #2b2b2b;
  color: #fff;
  font-family: 'Montserrat', 'Arial', sans-serif;
  scroll-behavior: smooth;
}
body { min-height: 100vh; }
.centered-hero {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}
.centered-hero .title {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffe082;
  letter-spacing: -1px;
  line-height: 1.15;
}
.centered-hero .subtitle, .centered-hero .desc {
  color: #f5f5f5;
  font-size: 1.22rem;
  margin-bottom: 0.4rem;
  line-height: 1.45;
  font-weight: 400;
}
.centered-hero .desc {
  color: #facc15;
  font-size: 1.09rem;
  margin-bottom: 2.2rem;
  font-style: italic;
  font-weight: 500;
}
.centered-hero .btn-primary {
  background: #facc15;
  color: #1a1a1a;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  font-size: 1.07rem;
  transition: all 0.24s;
  box-shadow: 0 6px 22px rgba(251,191,36,0.12);
  display: inline-block;
  margin-top: 1.2rem;
  cursor: pointer;
}
.centered-hero .btn-primary:hover {
  background: #fff200;
  color: #1a1a1a;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 8px 28px rgba(251,191,36,0.19);
}
.page-section {
  padding: 3.3rem 0 2.5rem 0;
  background: transparent;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.3rem;
}
.grid {
  display: grid;
  gap: 2.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2,1fr);
  align-items: center;
}
.grid-3 {
  grid-template-columns: repeat(3,1fr);
}
.grid-4 {
  grid-template-columns: repeat(4,1fr);
}
@media (max-width: 992px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .centered-hero .title { font-size: 1.45rem; }
  .centered-hero .subtitle, .centered-hero .desc { font-size: 1rem; }
}
.section-title {
  color: #ffe082;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: left;
  letter-spacing: -.5px;
}
.text-center { text-align: center; }
.section-description {
  color: #e0e0e0;
  font-size: 1.09rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.gallery-grid { margin-top: 2.5rem; }
.gallery-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(30,72,122,0.10);
  transition: transform .36s cubic-bezier(.24,.85,.35,1), box-shadow .3s;
  background: #fff;
  margin-bottom: 0;
}
.gallery-img img:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(243,183,27,0.18);
  border: 2px solid #facc1555;
}
.benefit-box {
  text-align: center;
  padding: 2.1rem 1.1rem 2rem 1.1rem;
  background: #222;
  border-radius: 18px;
  box-shadow: 0 5px 22px rgba(30,72,122,0.09);
  border: 1px solid #333;
  margin-bottom: 1.5rem;
  min-height: 240px;
}
.benefit-title {
  font-size: 1.15rem;
  color: #ffe082;
  margin-bottom: 10px;
  font-weight: 700;
}
.benefit-desc {
  color: #e0e0e0;
  font-size: 1.06rem;
  margin-bottom: 0;
  line-height: 1.62;
}
.icon-benefit img {
  filter: drop-shadow(0 2px 5px rgba(251,191,36,0.09));
}
.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, #ffe082 80%, #facc15 100%);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 999px;
  padding: 1rem 2.2rem 1rem 1.6rem;
  box-shadow: 0 4px 22px rgba(251,191,36,0.19), 0 2px 12px #1a1a1a1a;
  text-decoration: none;
  transition: background 0.23s cubic-bezier(.35,1.3,.43,1), transform 0.14s cubic-bezier(.55,.07,1,.92), box-shadow .2s;
  outline: none;
  cursor: pointer;
  position: relative;
}
.offer-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-btn:active {
  transform: translateY(1.5px) scale(0.97);
  box-shadow: 0 2px 6px rgba(251,191,36,0.14);
}
.offer-btn:hover,
.offer-btn:focus-visible {
  background: linear-gradient(90deg, #fffde7 80%, #ffe082 100%);
  color: #1e487a;
  box-shadow: 0 8px 36px rgba(251,191,36,0.25);
  outline: 3px solid #facc15;
  outline-offset: 2px;
}
.offer-btn:focus-visible {
  outline: 3px solid #facc15;
}
html { scroll-behavior: smooth; }
