:root {
  --navy: #0E3557;
  --gold: #E87722;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--navy);
  background: #fff;
}

/* Banner full width */
.banner {
  width: 100%;
  height: 260px;
  background: url('banner.png') center/cover no-repeat;
}

/* Header Section (logo + title beside each other) */
.intro {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 0 20px;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.text-block h1 {
  margin: 0;
  font-size: 28px;
}

.text-block p {
  margin: 5px 0 0;
  color: #444;
  font-size: 15px;
}

/* Tagline */
.tagline {
  text-align: center;
  color: var(--gold);
  font-weight: bold;
  margin: 30px 0 20px;
  letter-spacing: 0.5px;
}

/* About */
.about {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
  padding: 0 20px;
}

/* Socials */
.socials {
  text-align: center;
  margin-bottom: 40px;
}

.socials a {
  display: inline-block;
  margin: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}

.socials a.yt { background: #ff0000; }
.socials a.ig { background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5); }
.socials a.tt { background: #000; }
.socials a.fb { background: #1877f2; }

.socials a:hover { opacity: 0.85; }

footer {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 18px 12px;
  font-size: 14px;
}
footer .gst-disclaimer {
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
}
@media (max-width: 720px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 90px;
    height: 90px;
  }

  .text-block h1 {
    font-size: 22px;
  }

  .banner {
    height: 180px;
  }
}
footer {
  color: #ffffff !important;
}
footer a {
  color: #ffffff !important;
}
footer a:hover {
  color: #f4b400 !important; /* your orange colour */
}
footer {
  text-align: center !important;
}footer, 
footer p, 
footer a, 
footer span, 
footer .gst-disclaimer {
  color: #ffffff !important;
}

footer a:hover {
  color: #f4b400 !important; /* your orange hover colour */
}
footer, 
footer .footer-links, 
footer p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
