    :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(59,130,246,.12), transparent 55%),
        linear-gradient(180deg,#f6f7fb,#eef2ff);
      color:var(--ink);
    }

    /* ===== 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;
      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}

    /* ===== MAIN CONTENT ===== */
    .wrap{max-width:900px;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:28px 22px;
      border-radius:var(--radius);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      text-align:center;
    }
    .hero h1{
      margin:0;
      font-size:36px;
      color:#8b0000; /* Dark red like other pages */
    }
    .hero p{color:var(--muted); margin:10px 0 0}

    .card{
      margin-top:20px;
      background:#fff;
      border-radius:var(--radius);
      border:1px solid var(--line);
      box-shadow:0 12px 30px rgba(0,0,0,.08);
      padding:26px;
      text-align:center;
    }
    .price{
      font-size:32px;
      font-weight:900;
      color:var(--brand);
      margin:10px 0;
    }
    .section-title{
      font-size:20px;
      font-weight:800;
      margin-top:24px;
      color:#111827;
    }
    .meta{
      color:var(--muted);
      font-size:15px;
      margin-top:6px;
    }

    .contact{
      margin-top:20px;
      font-size:16px;
      font-weight:700;
    }
    .contact a{
      display:block;
      margin-top:8px;
      text-decoration:none;
      color:var(--brand);
      font-weight:900;
      word-break:break-word;
    }

    footer{
      margin-top:26px;
      text-align:center;
      font-size:12px;
      color:var(--muted);
    }

    @media (max-width:600px){
      .hero h1{font-size:28px}
      .price{font-size:28px}
      .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;
}
