:root {
  --brand-primary: #0a6dfc;
  --brand-dark: #0f1b2d;
  --brand-accent: #12d4a2;
  --text: #222;
  --muted: #667;
  --bg: #fff;
}

* { box-sizing: border-box; }
body { font-family: system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--brand-dark), #112a4c);
  color: #fff; padding: 80px 0;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0; }
.hero .meta { font-size: 1.1rem; opacity: 0.9; }
.hero .cta { margin-top: 20px; }
.btn {
  display: inline-block; background: var(--brand-primary); color: #fff; padding: 12px 18px; border-radius: 8px;
}
.btn-outline { background: transparent; border: 2px solid #fff; }

/* Fix checkbox alignment */
.form-check {
  display: inline-block;     /* prevent full-width block */
  margin-bottom: 10px;
}

.form-check label {
  display: inline-flex;      /* keep checkbox + text inline */
  align-items: center;       /* vertical centering */
  gap: 6px;                  /* spacing between checkbox and text */
  width: auto;               /* prevent stretching full width */
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  margin: 0;                 /* remove default offset */
}



/* Cards */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { border: 1px solid #eee; border-radius: 12px; padding: 16px; background: #fff; }
.card h3 { margin-top: 0; }

.grid2 {
  display: grid;
  gap: 24px;
  grid-template-columns: 70% 30%;  /* label takes 80%, checkbox 20% */
}


.contact-form {
  width: 100%;            /* take full width of container */
  max-width: 800px;       /* optional: limit on large screens */
  margin: 0 auto;         /* center the form in the container */
}

.contact-form .form-row {
  display: flex;
  flex-direction: column; /* stack label above input */
  margin-bottom: 1em;
}

.contact-form label {
  margin-bottom: 0.3em;
  font-weight: 600;
  text-align: left;       /* align label text left */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;            /* stretch to full width of form */
  max-width: 100%;        /* prevent theme from shrinking */
  padding: 0.6em;
  font-size: 1rem;
  box-sizing: border-box; /* include padding in width calc */
}


/* Team */
.team { padding: 40px 0; }
.team .member { text-align: center; }
.team .photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }

/* Header */
header { padding: 20px 0; border-top: 1px solid #eee; color: var(--muted); }

/* Footer menu horizontal */
.menu {
  list-style: none !important;   /* remove bullets */
  margin: 0;
  padding: 0;
  display: flex !important;      /* force horizontal layout */
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;       /* center items in footer */
}

.menu li {
  display: inline-block;
}

.menu li a {
  text-decoration: none;
  color: #0020DF;                   /* adjust for footer background */
  font-weight: 600;
}

.menu li a:hover {
  color: var(--brand-accent);
}

/* Responsive fallback */
@media (max-width: 768px) {
.menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

footer { padding: 20px 0; border-top: 1px solid #eee; color: var(--muted); color: #C0C0C0}

 



	

