/* BASE: reset, typography, colors, containers, generic buttons */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f5f7;
  color: #111827;
  scroll-behavior: smooth;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.btn {
  background-color: #FFD700;
  color: #000;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  transition: background-color 0.25s ease, transform 0.1s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.btn:hover {
  background: #e0bc00;
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.btn.secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: none;
}

.btn.secondary:hover {
  background: #FFD700;
  color: #000;
}

/* Generic section paddings / typography */
.section,
.about,
.why,
#services.svc-tiles,
.how-it-works,
#area,
.cta-banner,
.main-footer {
  padding-block: 80px;
}

.section h2,
.about h2,
.why h2 {
  text-align: center;
  font-size: clamp(2rem, 2.3vw + 1.4rem, 2.4rem);
  margin-bottom: 24px;
  color: #111827;
  letter-spacing: 0.02em;
}

.section p {
  text-align: center;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 30px;
  color: #4b5563;
}

.bg-light {
  background: #f9fafb;
}

@media (max-width: 768px) {
  .section,
  .about,
  .why,
  #services.svc-tiles,
  .how-it-works,
  #area,
  .cta-banner,
  .main-footer {
    padding-block: 56px;
  }
}

