body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

/* Header (split title) */
.site-header {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1.25rem 0 1.5rem;
}

.site-header .brand {
  margin: 0 .5rem 0.25rem;
  font-family: "Oxanium", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4.8vw, 3rem);   /* slightly bigger */
}

.site-header .brand-accent {
  background: linear-gradient(90deg,#00d1ff,#3af7c5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header .brand-tagline{
  font-family: "Oxanium", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;                     /* bold */
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  letter-spacing: .25px;
  color: #e6e6e6;
  margin: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.main-content {
    background: #fff;
    padding: 2rem;
    margin-top: 1rem;
    border-radius: 5px;
}

h2 {
    color: #333;
}

a {
    color: #333;
}

#team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.team-member {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background: #333;
  color: #fff;
  padding: 24px 0;            /* equal top & bottom */
  border-top: 1px solid #444;
}

.site-footer {
  background: #333;
  color: #fff;
}

.site-footer h2.footer-title {
  text-align: center;
  margin: 0 0 24px;
  font-size: 1.75rem;
  letter-spacing: .3px;
  color: #fff !important;  /* ensures white in the dark footer */
}

.logo-grid {
  display: flex;               /* put items in a row */
  justify-content: center;     /* center the pair */
  align-items: center;
  gap: 32px;
  margin: 0;                   /* remove default UL margin */
  padding: 0;                  /* remove default UL padding */
  list-style: none;
  margin-bottom: 24px;
}

.logo-grid li {
  list-style: none;            /* belt & braces */
}

.logo-grid li::marker {        /* remove marker glyph if any user agent insists */
  content: "";
}

/* Keeps correct aspect ratio and smaller than original */
.partner-logo {
  height: 64px;                /* common visual height */
  width: auto;                 /* preserve aspect ratio */
  max-width: 100%;
  display: block;
}

/* Hero layout */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center horizontally */
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0;
}

.hero-logo {
  display: block;
  margin: 0 auto;
  height: clamp(140px, 24vw, 260px);
  width: auto;
}

/* Hero subtitle — final */
.hero-subtitle {
  margin-top: 12px;                    /* space below logo */
  max-width: 46rem;                    /* keep line length nice */
  font-family: "Oxanium", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;                    /* medium-bold for readability */
  color: #555;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  text-transform: uppercase;
}


