/* --- styles unchanged --- */
:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --brand:#234f9b;
  --shadow:0 18px 50px rgba(2,6,23,.10);
  --radius:18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(35,79,155,.14), transparent 55%),
    radial-gradient(900px 500px at 85% 5%, rgba(220,38,38,.10), transparent 55%),
    linear-gradient(180deg,#f6f7fb,#eef2ff);
  color:var(--ink);
  overflow-x:hidden;
}

/* ===== UPDATED NAV BAR ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  max-width:1100px;
  margin:auto;
  padding:8px 16px;
}

nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.nav-logo img{
  width:32px; /* Small clickable logo size */
  height:auto;
  display:block;
}

nav a{
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color:var(--brand);
  padding:8px 12px;
  border-radius:999px;
}

nav a:hover{
  background:#eef2ff;
}

/* ===== CONTENT STYLES ===== */
.wrap{max-width:980px;margin:auto;padding:24px 16px 60px}

/* Large Logo Block */
.logo-wrap{
  margin:26px auto 10px;
  text-align:center;
}
.logo-wrap img{
  width:160px;
  max-width:80%;
  height:auto;
}

.hero{
  margin-top:18px;padding:26px 20px;border-radius:var(--radius);
  background:#fff;border:1px solid var(--line);
  box-shadow:var(--shadow);text-align:center;
}
.hero h1{margin:0;font-size:34px;color:#8b0000}
.hero p{margin:10px auto 0;color:var(--muted);max-width:72ch;font-size:16px}
.card{
  margin-top:18px;background:#fff;border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  padding:22px;
}
.house-wrap{width:min(520px,100%);margin:0 auto}
.house-img{
  width:100%;height:auto;display:block;
  border-radius:14px;box-shadow:0 12px 28px rgba(0,0,0,.12);
}
.chair{
  width:90px;height:auto;display:block;
  margin:18px auto 0;
  filter:drop-shadow(0 8px 10px rgba(0,0,0,.18));
}
.text{
  max-width:76ch;margin:18px auto 0;
  font-size:16px;line-height:1.75;color:#111827;text-align:left;
}
.text a{color:var(--brand);font-weight:800;text-decoration:none}
.text a:hover{text-decoration:underline}
.cta{
  margin-top:16px;padding:14px 16px;
  background:#f8fafc;border:1px solid var(--line);
  border-radius:14px;text-align:center;
  color:var(--muted);font-weight:600;
}
footer{
  margin-top:22px;text-align:center;font-size:12px;color:var(--muted);
}
@media(max-width:600px){
  .hero h1{font-size:26px}
  .text{font-size:15px}
  .logo-wrap img{width:130px}
}
body
{
   background-color: #FFFFFF;
   background-image: url('images/green-grass-blue-sky.jpg');
   background-attachment: scroll;
   background-position: left top;
   background-repeat: repeat;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #DC143C;
   text-decoration: underline;
}
a:visited
{
   color: #8B008B;
}
a:active
{
   color: #3CB371;
}
a:hover
{
   color: #376BAD;
   text-decoration: underline;
}
