/* =======================================================
   CSS RESET AND BASE INDUSTRIAL MODERN THEME
   ======================================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #131821;
  color: #F5F2E7;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}
a {
  color: #9BC3C2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5F2E7;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ====================
   COLOR AND FONT VARIABLES
   ==================== */
:root {
  --color-primary: #1A3559;
  --color-secondary: #9BC3C2;
  --color-accent: #F5F2E7;
  --color-dark-bg: #131821;
  --color-grey: #232C38;
  --color-steel: #3B4A5C;
  --color-error: #D9534F;
  --color-success: #0ACF83;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-main: 14px;
  --radius-btn: 30px;
  --shadow-light: 0 2px 16px 0 rgba(26,53,89,0.13), 0 1.5px 2px rgba(40,40,40,0.06);
  --shadow-focus: 0 0 0 2px #9BC3C2;
  --border-metal: 1.5px solid #3B4A5C;
  --gap-main: 24px;
}

/* =============================
   TYPOGRAPHY - INDUSTRIAL MODERN
   ============================= */
h1, .hero h1, .about-section h1, .thank-you h1, .gdpr-section h1, .privacy-policy h1, .terms-of-service h1, .cookie-policy h1, .contact h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.15;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  text-shadow: 1px 2px 0 #232C38, 0 2px 13px rgba(26,53,89,0.13);
}
h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
p, li, dl, address, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #F5F2E7;
  line-height: 1.7;
}
strong {
  font-weight: bold;
  color: var(--color-secondary);
  letter-spacing: 0.01em;
}

@media (min-width: 700px) {
  h1, .hero h1, .thank-you h1 {
    font-size: 3.3rem;
  }
  h2 {
    font-size: 2.1rem;
  }
  .about-section h1, .gdpr-section h1, .privacy-policy h1, .terms-of-service h1, .cookie-policy h1 {
    font-size: 2.8rem;
  }
}

/* ==========================
   INDUSTRIAL HEADER
   ========================== */
header {
  background: var(--color-primary);
  position: relative;
  box-shadow: 0 2px 8px 0 rgba(20,24,34,0.13);
  border-bottom: var(--border-metal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  z-index: 1001;
}
.logo img {
  max-height: 44px;
  height: 44px;
  filter: grayscale(10%) brightness(1.12) contrast(1.2) drop-shadow(0 1px 3px #232C38);
  transition: filter 0.3s;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #F5F2E7;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-steel);
  color: var(--color-secondary);
}
.cta-button {
  background: linear-gradient(90deg, var(--color-secondary) 90%, var(--color-primary) 100%);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 28px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-light);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.22s;
  outline: none;
  margin-left: 22px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 14px 0 rgba(31,63,91,0.22), 0 2px 8px rgba(44,44,44,0.10);
}
.mobile-menu-toggle {
  display: flex;
  background: none;
  border: 2px solid var(--color-secondary);
  color: var(--color-accent);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  cursor: pointer;
  transition: border 0.18s, color 0.18s, background 0.18s;
  z-index: 1101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-steel);
  color: var(--color-secondary);
  border-color: var(--color-accent);
}

/* ======= MOBILE NAV ======= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,34,42,0.98);
  box-shadow: 0 11px 24px 0 rgba(26,53,89,0.45);
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.79,-0.3,.2,1.36);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 24px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: 2px solid var(--color-secondary);
  color: var(--color-accent);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 0 24px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.18s, background 0.18s, color 0.18s;
  z-index: 2200;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--color-secondary);
  background: var(--color-steel);
  border-color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0 38px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 1.18rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Hide desktop nav & CTA button on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* ================================
   LAYOUT CONTAINERS AND SPACING
   ================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  .section,
  section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 6px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--color-grey);
  border: var(--border-metal);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 270px;
  flex: 1 1 310px;
  transition: box-shadow 0.24s, border-color 0.14s;
}
.card:hover,
.card:focus-visible {
  box-shadow: 0 6px 32px 0 rgba(31,63,91,0.28), 0 2px 8px rgba(44,44,44,0.13);
  border-color: var(--color-secondary);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* Feature Item - Industrial Styling */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #161e2b;
  border: var(--border-metal);
  border-radius: 8px;
  padding: 22px 18px;
  box-shadow: 0 2px 8px 0 rgba(30,34,42,0.09);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  background: linear-gradient(120deg,#131821 80%,#1A3559 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: var(--border-metal);
  box-shadow: 0 2px 18px 0 rgba(26,53,89,0.09);
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
}
.hero h1 {
  color: var(--color-accent);
  text-align: center;
}
.hero p {
  color: #f8f8f8;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 650px;
}
.hero .cta-button {
  margin-top: 16px;
}

@media (max-width: 700px) {
  .hero {
    min-height: 190px;
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
}

/* ================================
   FEATURES SECTION
   ================================ */
.features {
  background: #161e2b;
  border-radius: var(--radius-main);
  margin-bottom: 60px;
  box-shadow: 0 0 13px 0 rgba(26,53,89,0.10);
}
.features h2 {
  margin-bottom: 8px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.features ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #181e28;
  border-radius: 8px;
  padding: 15px 18px 15px 16px;
  gap: 14px;
  color: #f5f2e7;
  font-size: 1.06rem;
  min-width: 220px;
  box-shadow: 0 2px 7px 0 rgba(41,48,61,0.11);
  border: 1.2px solid #232C38;
  letter-spacing: 0.009em;
}
.features ul li img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  filter: grayscale(60%) brightness(1.23) contrast(1.18);
}
@media (max-width: 768px) {
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features ul li {
    min-width: 0;
  }
}

/* ================================
   SERVICES SECTION & TABLES
   ================================ */
.services ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services ul li {
  background: #192536;
  border-radius: 8px;
  border: 1.1px solid #283442;
  padding: 16px 18px;
  font-size: 1.08rem;
  box-shadow: 0 1.5px 5px rgba(43,56,79,0.11);
  color: #eaeaea;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.services ul li strong {
  color: var(--color-accent);
  font-size: 1.02em;
  font-family: var(--font-display);
}
.services ul li span {
  color: #cfd3d7;
}
.services .cta-button {
  margin-top: 16px;
}
.services table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #191e2b;
  border-radius: var(--radius-main);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(41,53,65,0.12);
}
.services thead {
  background: #1A3559;
}
.services th, .services td {
  padding: 13px 12px;
  text-align: left;
  font-size: 1rem;
}
.services th {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.services td {
  color: #F5F2E7;
}
.services tbody tr {
  border-bottom: 1px solid #283442;
}
.services tbody tr:last-child {
  border-bottom: none;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials {
  background: #f5f2e7;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 16px 0 rgba(58,65,83,0.10);
  margin-bottom: 60px;
}
.testimonials h2, .testimonials h1 {
  color: #1A3559;
  text-shadow: none;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 12px 0 rgba(41,48,61,0.11);
  margin-bottom: 20px;
  border-left: 5px solid var(--color-secondary);
  max-width: 520px;
  color: #1a3559;
}
.testimonial-card p {
  color: #283442;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: #3B4A5C;
  font-size: 1rem;
  margin-top: -8px;
}
@media (max-width: 700px) {
  .testimonials h1, .testimonials h2 {
    text-align: left;
    font-size: 1.45rem;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
  }
}

/* ================================
   CONTACT
   ================================ */
.contact-short, .contact {
  background: linear-gradient(90deg,#181e28 85%,#232C38 100%);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  text-align: left;
  color: #F5F2E7;
  margin-bottom: 60px;
}
.contact-short h2, .contact h1 {
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.contact-short p, .contact p, .contact dl {
  color: #e4e8eb;
  margin-bottom: 10px;
}
.contact dl {
  margin-top: 8px;
  margin-bottom: 14px;
}
.contact dt {
  font-weight: bold;
  color: var(--color-secondary);
  margin-top: 8px;
}
.contact dd {
  margin-left: 0;
  color: #f5f2e7;
}

/* ================================
   THANK YOU
   ================================ */
.thank-you {
  background: #181e28;
  border-radius: var(--radius-main);
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  text-align: center;
}
.thank-you h1 {
  color: var(--color-secondary);
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #232C38;
  border-top: var(--border-metal);
  padding: 36px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  box-shadow: 0 -2px 19px 0 rgba(41,48,61,0.09);
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  color: var(--color-secondary);
  font-size: 1rem;
  border-radius: 7px;
  padding: 5px 10px;
  transition: background 0.19s, color 0.18s;
  letter-spacing: 0.02em;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  color: #f5f2e7;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.contact-info address {
  font-style: normal;
  color: var(--color-accent);
}
.contact-info a {
  color: var(--color-secondary);
  text-decoration: underline;
}

@media (max-width: 700px) {
  footer {
    padding: 30px 0 12px 0;
    font-size: 0.95rem;
    gap: 10px;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* ===========================================
   POLICY/TEXT-HEAVY PAGES
   =========================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  color: #e8eaf0;
}
.text-section h2, .text-section h3 {
  margin-top: 24px;
}
.terms-of-service, .privacy-policy, .cookie-policy, .gdpr-section {
  background: #181e28;
  border-radius: var(--radius-main);
  color: #f5f2e7;
  box-shadow: 0 2px 11px rgba(44,53,61,0.11);
}
.text-section ul {
  margin-left: 24px;
  list-style: disc inside;
  color: #cfd3d7;
  gap: 0;
}
.text-section li {
  margin-bottom: 7px;
}
.text-section a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ===========================================
   COOKIE CONSENT BANNER & PREFERENCES MODAL
   =========================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1A3559;
  color: var(--color-accent);
  padding: 24px 18px 18px 18px;
  border-top: 2px solid var(--color-secondary);
  box-shadow: 0 -4px 28px 0 rgba(26,53,89,0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3000;
  animation: slideup-banner 0.47s cubic-bezier(.85,-0.17,.15,1.12);
}
@keyframes slideup-banner {
  0% { transform: translateY(100%); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-consent-banner .banner-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.cookie-consent-banner button {
  font-family: var(--font-body);
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s;
  box-shadow: 0 1px 3px rgba(41,53,81,0.12);
}
.cookie-consent-banner .accept {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-consent-banner .accept:hover,
.cookie-consent-banner .accept:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-consent-banner .reject {
  background: #3B4A5C;
  color: #fff;
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus {
  background: var(--color-error);
  color: #fff;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1.2px solid var(--color-secondary);
}
.cookie-consent-banner .settings:hover,
.cookie-consent-banner .settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Cookie Preferences Modal */
.cookie-modal {
  /* position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,33,48,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3100;
  animation: fadein-modal 0.33s ease; */
}
@keyframes fadein-modal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #1A3559;
  padding: 38px 26px 24px 26px;
  border-radius: var(--radius-main);
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 8px 32px 0 rgba(26,53,89,0.16), 0 1.5px 7px rgba(40,40,40,0.09);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EEF3F6;
  border-radius: 7px;
  padding: 13px 14px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal-content .category-label {
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-category .toggle-switch {
  position: relative;
}
.cookie-category input[type="checkbox"] {
  display: none;
}
.toggle-switch-label {
  display: inline-block;
  width: 34px;
  height: 18px;
  background: #C0C9D6;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.toggle-switch-label:before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(26,53,89,0.14);
  position: absolute;
  top: 0.5px;
  left: 0.5px;
  transition: left 0.23s cubic-bezier(.4,0,.2,1.55);
}
.cookie-category input[type="checkbox"]:checked + .toggle-switch-label {
  background: var(--color-secondary);
}
.cookie-category input[type="checkbox"]:checked + .toggle-switch-label:before {
  left: 16px;
}
.cookie-modal-content .cookie-modal-btn-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal-content .btn {
  border: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-body);
  padding: 9px 24px;
  border-radius: var(--radius-btn);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.032em;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-modal-content .btn.close {
  background: transparent;
  border: 1.2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-modal-content .btn.close:hover {
  background: #eaf2f2;
  color: var(--color-primary);
}
.cookie-modal-content .btn.save:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
/* ===========================================
   MISC ELEMENTS
   =========================================== */
::-webkit-scrollbar {
  width: 8px;
  background: #1A3559;
}
::-webkit-scrollbar-thumb {
  background: #3B4A5C;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #232C38;
}

/* ========================
   ACCESSIBILITY FOCUS
   ======================== */
a:focus, button:focus, input:focus, .card:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 0.5px;
}

/* ========================
   UTILITIES
   ======================== */
.text-center { text-align: center; }
.fw-bold { font-weight: bold; }
.text-accent { color: var(--color-accent); }
.text-secondary { color: var(--color-secondary); }
.text-primary { color: var(--color-primary); }
.bg-steel { background: #3B4A5C; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1050px) {
  .container { max-width: 96vw; }
}
@media (max-width: 825px) {
  .container { max-width: 99vw; }
  .content-wrapper {
    gap: 17px;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 15px;
  }
  header {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 7px;
    gap: 11px;
  }
}
@media (max-width: 490px) {
  .container {
    max-width: 100vw;
    padding: 0 2px;
  }
  header {
    padding: 8px 2px;
  }
  .logo img {
    max-height: 36px;
  }
}

/* END OF CSS */
