:root {
  --primary: #1a237e;
  --accent: #00bfa5;
  --bg: #f8f9fa;
  --text-dark: #2d3436;
  --text-light: #ffffff;
  --border: #dee2e6;
  --footer-bg: #1a237e;
  --footer-text: #e0e0e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg);
}

/* Navbar */
.navbar {
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--text-light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.navbar .links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.navbar .links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar .links a.active,
.navbar .links a:hover {
  color: var(--accent);
}

.navbar .cta {
  background: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.navbar .cta:hover {
  background: #00acc1;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 60%;
  max-width: 300px;
  background: var(--primary);
  color: var(--text-light);
  padding: 2rem;
  transition: right 0.3s ease;
  height: calc(100vh - 60px);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .links {
  display: block;
  margin-top: 1rem;
}

.mobile-menu .cta {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 2rem;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero .btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn-primary,
.hero .btn-outline {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

.hero .btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.hero .btn-primary:hover {
  background: #00acc1;
}

.hero .btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.hero .btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Services grid */
.services-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  fill: var(--primary);
}

/* About strip */
.about-strip {
  background: var(--primary);
  color: var(--text-light);
  padding: 3rem 2rem;
  margin: 3rem 0;
}

.about-strip .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-strip .abn {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* CTA strip */
.cta-strip {
  background: var(--accent);
  color: var(--primary);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-strip a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 4rem 2rem 2rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer .col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

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

.footer .col ul li {
  margin-bottom: 0.5rem;
}

.footer .col ul a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer .col ul a:hover {
  color: var(--accent);
}

.footer .col .abn-acn {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer .bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--footer-text);
  font-size: 0.85rem;
  margin-top: 2rem;
}

/* Inner page hero */
.inner-hero {
  min-height: 250px;
  background: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem 0;
}

/* Page CTA */
.page-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .navbar .links,
  .navbar .cta:not(.mobile) {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu.active {
    right: 0;
  }

  .navbar .links.mobile-active {
    display: block;
    position: fixed;
    top: 60px;
    right: 0;
    width: 50%;
    background: var(--primary);
    padding: 2rem;
    height: calc(100vh - 60px);
  }

  .footer .container {
    grid-template-columns: 1fr;
  }
}