:root {
  --navy: #310844;
  --navy-dark: #240533;
  --navy-darker: #1a0226;
  --orange: #FFC255;
  --orange-dark: #BF7500;
  --text-dark: #1c1221;
  --text-gray: #75697d;
  --border: #ebdff2;
  --bg-light: #faf7fc;
}

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

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
}

/* Central SVG icon styles */
.icon-svg {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  vertical-align: -0.15em;
}

.topbar span svg,
.topbar-right span svg, 
.footer-col .contact-line svg,
.info-icon svg,
.why-icon svg,
.role-icon svg,
.cat-icon svg {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  vertical-align: -0.15em;
  margin-inline-end: 6px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  display: block;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  width: 100%;
  justify-content: center;
}

/* TOP BAR */
.topbar {
  background: var(--navy-darker);
  color: #cbd5f5;
  font-size: 12.5px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}

.topbar-right {
  display: flex;
  gap: 20px;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 11px;
  line-height: 1.3;
}

.logo-text b {
  display: block;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: .5px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

nav a {
  white-space: nowrap;
}

nav a.active {
  color: var(--orange);
}

nav a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
}

/* PAGE HERO (Common to all subpages) */
.page-hero {
  background: linear-gradient(120deg, var(--navy-dark), #14305e);
  color: #fff;
  padding: 70px 0 60px;
}

.page-hero .eyebrow {
  color: var(--orange);
}

.page-hero .eyebrow::before {
  background: var(--orange);
}

.page-hero h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 16px;
  max-width: 700px;
  line-height: 1.15;
}

.page-hero p {
  color: #d7deef;
  font-size: 15px;
  max-width: 640px;
}

section {
  padding: 70px 0;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #310844 0%, #170422 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 24px;
}

.cta-banner h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}

.cta-banner p {
  color: #c7cfe6;
  font-size: 14px;
  max-width: 480px;
}

/* FOOTER */
footer {
  position: relative;
  background-color: #170422;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 36px 36px;
  color: #aeb8d6;
  padding-top: 50px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo b {
  color: #fff;
  font-size: 14px;
}

.footer-grid p {
  font-size: 13px;
  line-height: 1.7;
  color: #8b96b8;
}

.footer-col h5 {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 13.5px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .contact-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13.5px;
  margin-bottom: 12px;
  color: #aeb8d6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12.5px;
  color: #8b96b8;
  position: relative;
  z-index: 2;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  z-index: 50;
}

@media(max-width: 1240px) {
  nav {
    gap: 12px;
    font-size: 12.5px;
  }
  .logo-text b {
    font-size: 11px;
  }
  .logo-text {
    font-size: 10px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  .lang-toggle {
    padding: 6px 10px;
    font-size: 12px;
  }
}

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

@media(max-width:640px) {
  .cta-banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
