/* Global shared styles for all pages (typography, header/footer, buttons). */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #002B9B;
  --primary-green: #8CC708;
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #F8F9FA;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Shared container helper (kept compatible with existing pages). */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Shared button baseline */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-green {
  background-color: var(--primary-green);
  color: white;
}

.btn-green:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  color: white;
}

/* Shared navigation + footer (kept aligned to existing markup) */
nav {
  background: white;
  height: 100px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

nav .logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px !important;
  width: auto;
  background: transparent;
  border: none;
  overflow: hidden;
}

nav .logo-placeholder img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a.active::after,
.nav-links a[aria-current='page']::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-green);
}

.nav-links a:hover {
  color: var(--primary-blue);
}

footer {
  background: #0f172a;
  color: white;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  margin-bottom: 25px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-green);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #bbb;
  font-size: 14px;
}

.contact-item i {
  color: var(--primary-green);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 13px;
  color: #777;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

