:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --brand:#234f9b;
  --line:rgba(15,23,42,.12);
  --shadow:0 18px 50px rgba(2,6,23,.12);
  --radius:18px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:linear-gradient(180deg,#f6f7fb,#eef2ff);
  color:var(--ink);
  line-height:1.6;
}

/* ===== NAV BAR ===== */
nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:#ffffff;
  border-bottom:1px solid var(--line);
}

nav ul{
  list-style:none;
  margin:0;
  padding:8px 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

nav .nav-logo img{
  width:30px;
  height:auto;
  display:block;
}

nav a{
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  color:var(--brand);
  padding:8px 14px;
  border-radius:999px;
}

nav a:hover{
  background:#eef2ff;
}

/* ===== MAIN ===== */
main{
  max-width:900px;
  margin:0 auto;
  padding:28px 16px 60px;
}

.logo-wrap{
  margin:26px auto 10px;
  text-align:center;
}

.logo-wrap img{
  width:160px;
  max-width:80%;
  height:auto;
}

.hero{
  background:#ffffff;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:34px 22px;
  text-align:center;
  margin-bottom:24px;
}

.hero h1{
  margin:0;
  font-size:34px;
  color:#8b0000;
}

.message-box{
  background:#fcfdff;
  border-left:5px solid var(--brand);
  padding:24px;
  margin:24px 0;
  border-radius:12px;
  text-align:left;
}

.message-box h2 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--brand);
}

.message-box p {
  margin-bottom: 15px;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.t-card{
  background:#ffffff;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  padding:28px;
}

.t-text {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 15px;
  white-space: pre-wrap;
  font-size: 15px;
}

.t-author {
  font-weight: 800;
  color: var(--brand);
  text-align: right;
  display: block;
}

.cta-card {
  margin-top:24px;
  background:var(--brand);
  color: white;
  border-radius:var(--radius);
  padding:28px 22px;
  text-align:center;
}

.cta-card a {
  color: white;
  font-weight: 800;
  text-decoration: underline;
}

footer{
  margin-top:32px;
  text-align:center;
  font-size:12px;
  color:var(--muted);
}

@media(max-width:600px){
  .hero h1{font-size:26px}
  .logo-wrap img{width:130px}
  nav a { padding: 6px 10px; font-size: 13px; }
}
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;
}
