:root {
  --blue: #103f5c;
  --accent: #f1b12a;
  --light: #f6f6f6;
  --dark: #111;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
body { background: #fff; color: #222; line-height: 1.6; }
.container { width: min(1150px, 90vw); margin: 0 auto; }
.site-header { background: #fff; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 20; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { text-decoration: none; color: #000; }
.brand-title { font-weight: 700; letter-spacing: 0.02em; }
.brand-sub { display: block; font-size: 0.7rem; color: #777; }
.main-nav a { margin-left: 14px; text-decoration: none; color: #333; font-weight: 500; }
.main-nav a.active { color: var(--blue); }
.btn-nav { background: var(--blue); color: #fff !important; padding: 6px 14px; border-radius: 4px; }
.hero { position: relative; background-size: cover; background-position: center; min-height: 320px; color: #fff; display: flex; align-items: center; }
.hero-home { min-height: 420px; }
.small-hero { min-height: 240px; }
.overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; z-index: 2; max-width: 520px; padding: 60px 0; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.hero p { margin-bottom: 18px; }
.btn-primary, .btn-secondary { display: inline-block; text-decoration: none; padding: 10px 22px; border-radius: 4px; font-weight: bold; margin-right: 8px; }
.btn-primary { background: var(--accent); color: #000; }
.btn-secondary { background: rgba(255,255,255,0.1); border: 1px solid #fff; color: #fff; }
.section { padding: 60px 0; }
.section-dark { background: var(--blue); color: #fff; }
.top-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: -40px; position: relative; z-index: 5; }
.card { background: #fff; border: 1px solid #eee; padding: 22px; border-radius: 6px; box-shadow: 0 4px 26px rgba(0,0,0,0.03); }
.text-link { color: var(--blue); font-weight: bold; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.checklist li, .bullet li { margin-bottom: 10px; list-style: none; padding-left: 22px; position: relative; }
.checklist li::before { content: "✔"; position: absolute; left: 0; color: var(--accent); }
.bullet li::before { content: "•"; position: absolute; left: 0; color: var(--blue); }
.info-box { background: #f7fbff; border: 1px solid #d9e8f3; padding: 18px; border-radius: 6px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.gallery-grid img { width: 100%; display: block; border-radius: 5px; border: 1px solid #ddd; object-fit: cover; }
.contact-form { max-width: 500px; display: grid; gap: 12px; margin-top: 18px; }
.contact-form input, .contact-form textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
.small { font-size: 0.8rem; color: #777; }
.site-footer { background: #f3f3f3; margin-top: 40px; }
.footer-flex { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 28px 0; }
.footer-bottom { text-align: center; padding: 10px 0 20px; color: #666; font-size: 0.8rem; }
.mt-1 { margin-top: 16px; }
@media (max-width: 750px) {
  .nav { flex-wrap: wrap; }
  .main-nav { display: flex; flex-wrap: wrap; }
  .hero-content { max-width: 100%; }
  .top-cards { margin-top: 0; }
}
