/* ========== CSS RESET & NORMALIZE ========== */
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;
  box-sizing: border-box;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #11161B;
  color: #EDDED5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #EDDED5;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #236B4A;
  outline-offset: 2px;
}
ul, ol {
  margin: 0 0 20px 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #EDDED5;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
p, li {
  font-size: 1rem;
  color: #EDDED5;
}
strong {
  color: #fff;
  font-weight: 700;
}
section {
  width: 100%;
}

/* ========== BRAND COLORS (CSS VARIABLES) ========== */
:root {
  --primary: #194D6B;
  --primary-rgb: 25,77,107;
  --secondary: #EDDED5;
  --accent: #236B4A;
  --bg-dark: #181D23;
  --card-bg: #23272C;
  --metal-light: #7A828A;
  --metal-dark: #43484F;
  --shadow: 0 4px 18px 0 rgba(25, 77, 107, 0.12);
  --radius: 12px;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: linear-gradient(90deg, #11161B 85%, #23272C 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(24,29,35,.13);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  filter: brightness(1.1) drop-shadow(0 1px 6px rgba(25,77,107,0.09));
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #EDDED5;
  letter-spacing: 0.01em;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border .2s, color .2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  min-width: 164px;
  min-height: 48px;
  box-shadow: 0 2px 12px rgba(25,77,107,0.13);
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  transition: background .18s, color .16s, box-shadow .16s, border .18s;
  margin-left: 12px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #29855d;
  color: #f2f2f2;
  box-shadow: 0 3px 18px 0 rgba(35,107,74,0.19);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #EDDED5;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 16px;
  margin-left: 16px;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(35, 107, 74, 0.17);
  outline: 2px solid var(--accent);
}

/* ========== MOBILE MENU (HAMBURGER) ========== */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 2500;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,29,35, 0.97);
  transition: transform .35s cubic-bezier(0.7,0.17,0.28,1.11);
  transform: translateX(-100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  animation: mobileMenuSlideIn .31s cubic-bezier(.82, 0, .15, 1);
}
@keyframes mobileMenuSlideIn {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 10px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 4;
  border-radius: 8px;
  padding: 6px 14px;
  transition: background .18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(35,107,74,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 32px 12px 32px;
  width: 100vw;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.17rem;
  text-align: left;
  padding: 12px 0 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .17s, border .14s;
  min-width: 220px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  border-bottom: 1px solid var(--metal-light);
}

/* ========== SECTION: HERO ========== */
.hero {
  background: linear-gradient(100deg, #23272C 77%, #194D6B 100%);
  margin-bottom: 60px;
  padding: 56px 0 64px 0;
  box-shadow: 0 4px 24px 0 rgba(25,77,107,0.09);
}
.hero h1 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(25,77,107,0.18);
}
.hero p {
  color: #EDDED5;
  margin-bottom: 28px;
  font-size: 1.1rem;
  max-width: 570px;
}
.hero .btn-primary {
  margin-top: 12px;
  font-size: 1.08rem;
}

/* ========== FLEX CONTAINERS ========== */
.features, .services-preview, .testimonials, .cta-bottom, .disclaimer, .faq,
.about-intro, .about-values, .about-timeline, .audiences, .examples, .our-advantages, .credentials, .guide-intro, .blog-posts, .privacy-policy, .rodo, .cookies-policy, .terms, .thank-you, .contact-intro, .contact-info, .contact-cta, .services-list {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 22px;
  justify-content: space-between;
}
.feature-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--metal-dark);
  min-width: 256px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 32px 28px 28px 28px;
  transition: box-shadow .18s, border .12s, transform .18s;
  margin-bottom: 20px;
}
.feature-item:hover,
.feature-item:focus-within {
  border-color: var(--accent);
  box-shadow: 0 7px 22px 0 rgba(35,107,74,0.15);
  transform: translateY(-3px) scale(1.012);
}
.feature-item img {
  height: 42px;
  margin-bottom: 8px;
  filter: grayscale(0.19) brightness(1.12) drop-shadow(0 0 8px #2222);
}
.feature-item h3 {
  font-size: 1.2rem;
  color: #fff;
}
.feature-item p {
  color: #eddfd5;
  opacity: .93;
}

/* ========== CARDS & CARD CONTAINERS ========== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 24px 0;
}
.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--metal-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  min-width: 240px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .17s, border .15s, transform .17s;
}
.service-card:hover, .service-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 5px 18px 0 rgba(35,107,74,0.17);
  transform: translateY(-2px) scale(1.011);
}

.services-list .service-detail {
  background: var(--card-bg);
  border: 1px solid var(--metal-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 28px 20px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services-list h1 {
  margin-bottom: 24px;
}
.service-detail strong {
  color: var(--accent);
}

.posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.post-item {
  background: var(--card-bg);
  border: 1px solid var(--metal-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .15s, border .14s, transform .15s;
}
.post-item:hover, .post-item:focus-within {
  border-color: var(--accent);
  box-shadow: 0 5px 15px 0 rgba(35,107,74,0.11);
  transform: translateY(-2px) scale(1.008);
}

/* ========== TESTIMONIALS ========== */
.testimonials h2, .credentials h2, .testimonial-list h2 { color: var(--accent); }
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #faf8f5;
  color: #1A2129;
  border-radius: var(--radius);
  border: 1px solid #d9d3cd;
  box-shadow: 0 3px 18px 0 rgba(25,77,107,0.07);
  min-width: 260px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  font-size: 1.07rem;
  position: relative;
}
.testimonial-card p {
  color: #1a2129;
  font-size: 1.08rem;
}
.testimonial-card span,
.testimonial-card strong {
  display: block;
  color: #236B4A;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin-top: 4px;
  font-size: 0.96em;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 2.5rem;
  color: #236B4A70;
  opacity: .18;
  pointer-events: none;
  font-family: serif;
  z-index: 0;
}
.testimonial-card {
  transition: box-shadow .17s, border .14s, transform .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 5px 22px 0 rgba(35,107,74,0.09);
  transform: translateY(-2px);
}

/* ========== CTA BOTTOM ========== */
.cta-bottom {
  background: linear-gradient(94deg, #194D6B 84%, #43936C 100%);
  border-radius: var(--radius);
  box-shadow: 0 3px 22px 0 rgba(25,77,107,0.10);
  color: #fff;
  margin-top: 36px;
}
.cta-bottom h2 {
  color: #fff;
}
.cta-bottom p {
  color: #faf8f5;
}
.cta-bottom .btn-primary {
  margin-top: 18px;
  font-size: 1.01rem;
}

/* ========== DISCLAIMER SECTION ========== */
.disclaimer, .footer-disclaimer {
  color: #aab2b7;
  font-size: 0.96rem;
  margin-top: 38px;
}
.disclaimer p {
  color: #b7bbc0;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--metal-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.faq-item h3 {
  color: var(--accent);
  font-size: 1.14rem;
}

/* ========== SEARCH BAR ========== */
.search-bar {
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.search-bar input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--metal-light);
  background: #2b3038;
  font-size: 1rem;
  color: #fff;
  transition: border .17s;
}
.search-bar input[type="text"]:focus {
  border-color: var(--accent);
  outline: none;
}

/* ========== MAP EMBED ========== */
.map-embed {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.map-embed img {
  border: 1.5px solid var(--metal-light);
  border-radius: 8px;
  width: 260px;
  height: auto;
}

/* ========== FOOTER ========== */
footer {
  background: #181D23;
  color: #b6bdc3;
  width: 100%;
  padding: 32px 0 24px 0;
  border-top: 2px solid var(--primary);
  font-size: 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
}
.footer-logo img {
  height: 42px;
  filter: brightness(1.09) grayscale(.07);
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: #c8ced1;
  font-size: 1rem;
  transition: color .16s;
  border-bottom: 1.5px solid transparent;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
  border-bottom: 1px solid var(--metal-light);
}
.footer-contact p {
  color: #b7bbc0;
  font-size: 0.99rem;
}
.footer-disclaimer {
  flex-basis: 100%;
  margin-top: 12px;
  font-size: 0.92rem;
  color: #868B8F;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  z-index: 4000;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23272C;
  border-top: 2.5px solid var(--accent);
  box-shadow: 0 -2px 32px 0 rgba(25,77,107,0.18);
  padding: 20px 8vw 18px 8vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  opacity: 1;
  animation: cookie-slide-in .8s cubic-bezier(.75,.06,.39,.98);
}
@keyframes cookie-slide-in {
  from { transform: translateY(110%); opacity:.0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  flex: 2 1 300px;
  color: #faf8f5;
  font-size: 1rem;
  margin: 0 0 0 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 8px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border: 1.5px solid var(--accent);
  font-size: 1rem;
  cursor: pointer;
  background: #236B4A;
  color: #fff;
  transition: background .15s, color .18s, border .14s;
  min-width: 120px;
}
.cookie-banner .reject {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: rgba(35,107,74,.11);
}
.cookie-banner .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #1d5439;
}
.cookie-banner .settings {
  background: var(--metal-dark);
  color: #EDDED5;
  border: 1.5px solid #2a3037;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--primary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,22,27,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein .27s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #23272C;
  color: #fff;
  border-radius: var(--radius);
  max-width: 420px;
  width: 92vw;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 3px 44px 0 rgba(25,77,107,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-slide .28s cubic-bezier(.62,.12,.29,.97);
}
@keyframes cookie-modal-slide {
  from { transform: translateY(60px); opacity: .55; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px 14px;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  background: rgba(35,107,74,0.08);
}
.cookie-modal h2 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.cookie-category {
  background: #191C22;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 13px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}
.cookie-category .toggle {
  margin-left: 12px;
  accent-color: var(--accent);
}
.cookie-category[aria-disabled="true"] {
  opacity: .68;
  pointer-events: none;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.cookie-modal-actions button {
  min-width: 120px;
  padding: 10px 18px;
}

/* ========== SPACING, FLEX UTILS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1.2px solid var(--metal-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== FORM/INPUTS ========== */
input, textarea, select, button {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
input, textarea, select {
  font-size: 1rem;
}
button {
  cursor: pointer;
}

/* ========== TYPOGRAPHY SCALING FOR RESPONSIVE ========== */
@media (min-width: 500px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
}
@media (min-width: 768px) {
  h1 { font-size: 3.0rem; }
  .hero h1 { font-size: 2.5rem; }
  .feature-item h3, .service-card h3 { font-size: 1.24rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3.2rem; }
  .hero h1 { font-size: 2.89rem; }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1110px) {
  .container {
    max-width: 100vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
@media (max-width: 900px) {
  .footer-content,
  .feature-grid, .service-cards, .posts-list,
  .testimonial-slider, .testimonial-list, .faq-list {
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .service-cards, .posts-list,
  .testimonial-slider, .testimonial-list, .faq-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    min-width: 140px;
    min-height: 44px;
    font-size: 0.98rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .service-cards, .posts-list, .faq-list,
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .hero {
    padding: 38px 0 40px 0;
  }
  .section, .features, .services-preview, .faq,
  .about-intro, .about-values, .about-timeline, .cta-bottom {
    padding-left: 6px;
    padding-right: 6px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container {
    gap: 12px;
  }
  .testimonial-card, .service-card, .feature-item, .faq-item, .post-item {
    min-width: 0;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2.05rem; }
  .card-container, .service-cards, .feature-grid , .posts-list,
  .faq-list, .testimonial-slider, .testimonial-list {
    gap: 10px;
  }
  .container {
    padding-left: 5vw; padding-right: 5vw;
  }
  .testimonial-card, .service-card, .faq-item, .feature-item, .post-item {
    padding: 14px 10px;
  }
  .section, .features, .cta-bottom {
    padding: 18px 2px;
    margin-bottom: 35px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 18px 3vw 18px 3vw;
    gap: 18px;
  }
}

/* FLEX DIRECTION FOR .text-image-section */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ======= INTERACTIVE ELEMENTS, HOVER EFFECTS ======= */
a, button, .card, .service-card, .feature-item, .testimonial-card {
  transition: box-shadow .18s, color .14s, border .13s, background .16s, transform .13s;
}
.btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal-actions button {
  transition: background .13s, color .15s, border .13s, box-shadow .16s;
}
a:active, button:active {
  transform: scale(0.96);
}

/* ========== UTILITIES ========== */
.metal-text {
  color: var(--metal-light) !important;
  letter-spacing: 0.04em;
}
.bg-metal {
  background: var(--metal-dark);
  color: #fff;
}
.text-accent {
  color: var(--accent) !important;
}
.text-primary {
  color: var(--primary) !important;
}

/* ========== GENERIC LIST STYLES ========== */
ul, ol {
  margin-bottom: 28px;
  color: #EDDED5;
  font-size: 1rem;
}
ul li, ol li {
  margin: 0 0 10px 0;
  padding-left: 2px;
}

/* ========== 404 PAGE (if any) ========== */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 10px;
  color: #fff;
}
.page-404 h1 { font-size: 4rem; color: var(--accent); }
.page-404 p {font-size: 1.2rem;}

/* ====== PRINT: Remove cookie/banner for print ====== */
@media print {
  .cookie-banner,
  .cookie-modal-overlay,
  .mobile-menu {
    display: none !important;
    visibility: hidden;
  }
}
