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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans", noto-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

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

a {
  color: #001E41;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 500px) {
  .container { max-width: 768px; }
}
@media (min-width: 768px) {
  .container { max-width: 736px; }
}
@media (min-width: 992px) {
  .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1104px; }
}
@media (min-width: 1400px) {
  .container { max-width: 1344px; }
}

.container-fluid {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -16px;
  margin-left: -16px;
}

.col {
  position: relative;
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  flex: 1 0 0;
  max-width: 100%;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .offset-lg-1 { margin-left: 8.333333%; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 500;
  color: #001E41;
  margin-top: 0;
}

h1 { font-size: 48px; line-height: 1.1; margin-bottom: 16px; }
h2 { font-size: 32px; line-height: 1.2; margin-bottom: 16px; margin-top: 32px; }
h3 { font-size: 24px; line-height: 1.3; margin-bottom: 12px; margin-top: 24px; }
h4 { font-size: 20px; line-height: 1.4; margin-bottom: 12px; }
h5 { font-size: 18px; line-height: 1.4; margin-bottom: 12px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-block;
  cursor: pointer;
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 96px;
  text-align: center;
  font-family: "Noto Sans", noto-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 24px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-primary {
  color: #fff;
  background-color: #001E41;
  border-color: transparent;
}

.btn-primary:hover {
  background-color: #1B336A;
  text-decoration: none;
}

.btn-primary:active {
  background-color: #24448E;
}

.btn-secondary {
  color: #001E41;
  background-color: transparent;
  border: 2px solid #001E41;
  padding: 10px 14px;
}

.btn-secondary:hover {
  background-color: #E1E6F366;
  text-decoration: none;
}

.btn-secondary:active {
  background-color: #E1E6F3CC;
}

.btn-white {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px 14px;
}

.btn-white:hover {
  background-color: rgba(255,255,255,0.16);
  text-decoration: none;
}

.btn-white:active {
  background-color: rgba(255,255,255,0.28);
}

.text-link {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  color: #001E41;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Noto Sans", noto-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, sans-serif;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link svg {
  flex-shrink: 0;
  margin-right: 4px;
}

.text-link .label {
  display: inline-flex;
  margin: 0 4px 0 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 8px 16px;
  background: #001E41;
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Top Bar */
.top-bar {
  background: #001E41;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 40px;
  gap: 24px;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
}

.top-bar a:hover {
  color: #fff;
  text-decoration: underline;
}

.top-bar .dropdown-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-bar .dropdown-btn:hover {
  color: #fff;
}

/* Header / Navigation */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  position: relative;
}

.header .logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
  flex-shrink: 0;
}

.header .logo img {
  height: 32px;
  width: auto;
}

.header .logo:hover {
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  flex: 1;
}

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

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  padding: 24px 20px;
  color: #001E41;
  text-decoration: none;
  font-size: 15px;
  font-weight: 450;
  height: 72px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-item > a:hover {
  color: #001E41;
  text-decoration: none;
}

.nav-item > a .arrow {
  margin-left: 6px;
  font-size: 10px;
  transition: transform 0.2s;
}

.nav-item:hover > a .arrow {
  transform: rotate(180deg);
}

.nav-item:hover > a {
  color: #001E41;
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 600px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-top: 2px solid #001E41;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 999;
  padding: 24px;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown h4 {
  font-size: 14px;
  font-weight: 600;
  color: #001E41;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-dropdown .dropdown-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-dropdown .dropdown-links li {
  margin-bottom: 8px;
}

.mega-dropdown .dropdown-links a {
  color: #001E41;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}

.mega-dropdown .dropdown-links a:hover {
  color: #1B336A;
  text-decoration: underline;
}

.mega-dropdown .desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.mega-dropdown .find-out-more {
  color: #001E41;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mega-dropdown .find-out-more:hover {
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}

.header-actions .btn-login {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 8px;
  color: #fff;
  background-color: #001E41;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 450;
  text-decoration: none;
}

.header-actions .btn-login:hover {
  background-color: #1B336A;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #001E41;
  transition: all 0.3s;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 24px 16px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: #001E41;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-item .sub-toggle {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  color: #001E41;
}

.mobile-subnav {
  display: none;
  list-style: none;
  padding: 0 0 16px 16px;
}

.mobile-subnav.open {
  display: block;
}

.mobile-subnav li {
  margin-bottom: 8px;
}

.mobile-subnav a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,65,0.85) 0%, rgba(0,30,65,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-content .hero-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  max-width: 600px;
  line-height: 1.5;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 640px;
  line-height: 1.6;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-hero .hero-content {
  padding: 60px 0;
}

.page-hero .hero-content h1 {
  font-size: 42px;
}

.page-hero .breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  gap: 8px;
  font-size: 13px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb .current {
  color: #fff;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-light {
  background: #F4F6F9;
}

.section-dark {
  background: #001E41;
  color: #fff;
}

.section-dark h2, .section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: rgba(255,255,255,0.85);
}

.section-sm {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-top: 0;
}

.section-title p {
  color: #666;
  max-width: 640px;
  margin: 0 auto;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Icon Card */
.icon-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}

.icon-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.icon-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.icon-card .icon img {
  width: 100%;
  height: 100%;
}

.icon-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 0;
}

.icon-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Content Section */
.content-section {
  padding: 48px 0;
}

.content-section h2 {
  margin-top: 0;
}

.content-section p {
  color: #555;
  line-height: 1.7;
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.content-section ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.content-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #001E41;
  border-radius: 50%;
}

/* Two Column Layout */
.two-col {
  display: flex;
  gap: 64px;
  align-items: center;
}

.two-col .col-text {
  flex: 1;
}

.two-col .col-image {
  flex: 1;
}

.two-col .col-image img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .two-col {
    flex-direction: column;
    gap: 32px;
  }
}

/* Contact Section */
.contact-section {
  background: #001E41;
  color: #fff;
  padding: 64px 0;
  text-align: center;
}

.contact-section h2 {
  color: #fff;
  margin-top: 0;
}

.contact-section p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Testimonial */
.testimonial {
  background: #F4F6F9;
  padding: 48px;
  border-radius: 8px;
  text-align: center;
}

.testimonial blockquote {
  font-size: 20px;
  font-style: italic;
  color: #001E41;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonial cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  color: #666;
}

/* Spacer */
.spacer-xs { margin-top: 16px; }
.spacer-sm { margin-top: 24px; }
.spacer-md { margin-top: 32px; }
.spacer-lg { margin-top: 48px; }
.spacer-xl { margin-top: 64px; }
.spacer-xxl { margin-top: 80px; }
.spacer-xxxl { margin-top: 112px; }

/* Divider */
.divider {
  height: 1px;
  background-color: #d0d0d0;
  margin: 0;
  border: none;
}

/* Breadcrumb */
.breadcrumbs {
  padding: 16px 0;
  background: #F4F6F9;
  font-size: 13px;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #001E41;
  text-decoration: underline;
}

.breadcrumbs span {
  color: #666;
  margin: 0 4px;
}

.breadcrumbs .current {
  color: #001E41;
}

/* Footer */
.footer {
  background: #F4F6F9;
  color: #001E41;
  padding: 48px 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer h5 {
  font-size: 14px;
  margin-bottom: 16px;
  color: #001E41;
}

.footer a {
  color: #001E41;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.footer-divider {
  height: 1px;
  background: #494949;
  margin: 0 0 24px;
  border: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: #001E41;
  padding: 4px 12px;
  white-space: nowrap;
}

.footer-legal a:first-child {
  padding-left: 0;
}

.footer-legal .link-divider {
  width: 1px;
  height: 22px;
  background: #001E41;
  display: inline-flex;
  margin: 4px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d0d0d0;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 6px 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #001E41;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #001E41;
  color: #fff;
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin: 0;
  flex: 1;
  min-width: 280px;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  font-size: 14px;
  padding: 8px 20px;
  min-width: 80px;
}

.cookie-banner .btn-accept {
  background: #fff;
  color: #001E41;
  border: none;
}

.cookie-banner .btn-accept:hover {
  background: #e5e5e5;
}

.cookie-banner .btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}

.cookie-banner .btn-decline:hover {
  background: rgba(255,255,255,0.1);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #001E41;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: opacity 0.2s;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  opacity: 0.85;
}

/* Legal pages */
.legal-page {
  padding: 48px 0 80px;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 40px;
}

.legal-page h3 {
  font-size: 18px;
  margin-top: 24px;
}

.legal-page p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-page ul, .legal-page ol {
  margin: 0 0 24px 24px;
  color: #555;
  line-height: 1.7;
}

.legal-page ul li, .legal-page ol li {
  margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #001E41;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Alert */
.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.alert-info {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

/* Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* Responsive */
@media (max-width: 991px) {
  .nav { display: none; }
  .header-actions .btn-login { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 36px; }
  .hero { min-height: 400px; }
  .hero-content { padding: 48px 0; }

  .page-hero { min-height: 240px; }
  .page-hero .hero-content h1 { font-size: 32px; }

  .section { padding: 40px 0; }
  .section-title { margin-bottom: 32px; }

  .card-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .footer-legal a { padding: 4px 0; }
  .footer-legal .link-divider { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
  .hero { min-height: 320px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content .hero-subtitle { font-size: 16px; }

  .page-hero { min-height: 200px; }
  .page-hero .hero-content h1 { font-size: 26px; }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .section { padding: 32px 0; }

  .card-grid { grid-template-columns: 1fr; }

  .two-col { flex-direction: column; gap: 24px; }

  .top-bar-inner { justify-content: center; gap: 12px; font-size: 12px; }
  .top-bar .dropdown-btn { font-size: 12px; }

  .header .logo img { height: 26px; }

  .testimonial { padding: 32px 24px; }
  .testimonial blockquote { font-size: 17px; }

  .cookie-banner .container { flex-direction: column; text-align: center; }
}
