/* 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;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F6F5F5;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #33372b;
  background: #F6F5F5;
  line-height: 1.6;
  position: relative;
}

* {
  box-sizing: border-box !important;
}

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

a {
  text-decoration: none;
  color: #22577A;
  transition: color 0.2s;
}

a:focus, a:hover {
  color: #A65E2E;
}

ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

button, .btn-primary {
  cursor: pointer;
}

/* VINTAGE RETRO THEME VARIABLES ---------------------------------------------------------- */
:root {
  --color-primary: #22577A;
  --color-secondary: #38A3A5;
  --color-accent: #F6F5F5;
  --color-retro-cream: #FEF6E4;
  --color-retro-brown: #965D38;
  --color-retro-yellow: #FFD972;
  --color-retro-orange: #FFA552;
  --color-retro-green: #A0C87A;
  --color-retro-red: #C94C4C;
  --color-retro-blue: #607196;
  --color-text-dark: #21201a;
  --color-text-light: #fff;
  --border-radius: 18px;
  --font-display: 'Montserrat', 'Impact', 'Arial Black', cursive, sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
  --shadow-retro: 0 2px 6px rgba(60,24,0,0.10),0 0.5px 0.5px 1px #ffd972 inset;
  --section-padding: 40px 20px;
  --section-margin: 60px;
  --card-gap: 24px;
}

/* TYPOGRAPHY ---------------------------------------------------------------------------- */
h1, .page-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--color-retro-brown);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #ffd972, 3px 3px 0 #F8D49D;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-retro-orange);
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  text-shadow: 1px 1px 0 #FEF6E4;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-retro-green);
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}

h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
}

.subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-retro-blue);
  background: var(--color-retro-yellow);
  display: inline-block;
  padding: 6px 18px 6px 14px;
  margin-bottom: 32px;
  border-radius: 14px;
  box-shadow: 0 0.5px 2.5px 0 #FFD972 inset;
}

p, li, dt, dd, span {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

strong {
  color: var(--color-retro-red);
  font-weight: 600;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-primary);
  background: var(--color-retro-cream);
  border-left: 7px solid var(--color-retro-orange);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 10px;
  margin-top: 10px;
  box-shadow: var(--shadow-retro);
}

.testimonial-user {
  font-size: 0.95rem;
  color: var(--color-retro-brown);
  font-style: italic;
  letter-spacing: 1px;
}

.page-title {
  margin-bottom: 35px;
}

/* FORM ELEMENTS -------------------------------------------------------------------------- */
input, textarea, select {
  border: 1.5px solid var(--color-retro-brown);
  border-radius: 7px;
  background: var(--color-accent);
  padding: 9px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-retro-orange);
}

/* BUTTONS -------------------------------------------------------------------------------- */
.btn-primary, .mobile-menu .btn-primary, .mobile-nav .btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-retro-brown);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--border-radius);
  letter-spacing: 1px;
  box-shadow: 0 0.5px 4px #ac9e8373, 0 2px 8px 0px #ffd97240;
  border: 2.5px solid var(--color-retro-yellow);
  margin-top: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-retro-orange);
  color: var(--color-retro-brown);
  box-shadow: 0 4px 26px 0px #fff6e4cc,0 2px 7.5px #FFD97277;
  border-color: var(--color-retro-brown);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--color-retro-yellow);
  color: var(--color-retro-brown);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: var(--border-radius);
  border: 2px solid var(--color-retro-orange);
  margin-top: 10px;
  margin-bottom: 14px;
  transition: background 0.18s, color 0.18s, border 0.18s;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-retro-brown);
  color: #fff;
  border-color: var(--color-retro-brown);
}

/* LABELS, BADGES (VINTAGE) --------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-retro-red);
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  border-radius: 26px;
  letter-spacing: 0.4px;
  font-size: 0.98rem;
  padding: 5px 18px 5.5px 12px;
  margin-right: 7px;
  box-shadow: 0 1.5px 4px 0px #ffd97266;
}

/* VINTAGE CARD AND SECTION STYLES ------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-retro-cream);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-retro);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff9f0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-retro), 0 0.5px 6px #ffd97236;
  border-top: 7px solid var(--color-retro-yellow);
  padding: 24px 22px 20px 22px;
  min-width: 260px;
  max-width: 100%;
  flex: 1 0 260px;
}

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 3px 17px 0px #ffd972aa, 0 1.5px 6px #965d3822;
  border-left: 7px solid var(--color-retro-yellow);
  min-width: 260px;
  max-width: 540px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-section {
  margin-bottom: 24px;
}

.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  background: linear-gradient(90deg, #FFD97211 0%, #F6F5F5 100%);
}
.thankyou-section .content-wrapper {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 32px 28px;
  box-shadow: 0 4px 24px #ffd97255, 0 1.5px 7px #965d3820;
}

/* FEATURE & SERVICE LISTS - RETRO STYLES ---------------------------------------- */
ul.feature-grid, ul.service-list, ul.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 12px;
}
ul.feature-grid li, ul.service-list li, ul.blog-list li {
  background: #fff;
  border: 2px solid #ffd972;
  border-radius: var(--border-radius);
  padding: 22px 18px 20px 18px;
  width: 100%;
  max-width: 305px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1.5px 7px #FFD97244,0 0.5px 2px #A65E2E15;
  transition: box-shadow 0.21s, transform 0.21s;
  margin-bottom: 0;
}
ul.feature-grid li:hover, ul.service-list li:hover, ul.blog-list li:hover {
  box-shadow: 0 5px 22px #A65E2E33,0 0.5px 7.5px #FFD97255;
  transform: translateY(-5px) scale(1.03);
}
ul.feature-grid img, ul.service-list img {
  margin-bottom: 11px;
  min-width: 38px;
}
ul.feature-grid h3, ul.service-list h2, ul.blog-list h3 {
  margin-bottom: 10px;
}

/* BENEFITS & CTA STYLES ----------------------------------------------------------- */
.benefits {
  background: var(--color-retro-yellow);
  border-radius: var(--border-radius);
  padding: 36px 20px 40px 20px;
  margin-bottom: var(--section-margin);
}
.benefits h2 {
  color: var(--color-retro-brown);
  text-shadow: none;
}
.benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.benefits li {
  background: #FFF8E8;
  border-radius: 12px;
  padding: 18px 20px 16px 16px;
  min-width: 170px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 9px #FFD97230;
}
.benefits img {
  min-width: 32px;
  width: 32px;
  margin-right: 7px;
}

.cta, .cta-section {
  background: var(--color-retro-brown);
  color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4.5px 22px #FFD97233,0 1px 7px #A65E2E1a;
  padding: 36px 22px;
  margin-bottom: var(--section-margin);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h2, .cta-section h2 {
  color: #fff;
  text-shadow: 2px 2px 0 #A65E2E55;
}
.cta .btn-primary, .cta-section .btn-primary {
  margin-top: 22px;
  background: var(--color-retro-yellow);
  color: var(--color-retro-brown);
  border-color: #fff6e4;
}
.cta .btn-primary:hover, .cta-section .btn-primary:hover {
  background: var(--color-retro-orange);
  color: #fff;
  border-color: #fff;
}

/* HEADER & NAVIGATION ----------------------------------------------------------- */
header {
  background: #fff6e4;
  box-shadow: 0 2.5px 14px #FFD97221;
  border-bottom: 5px solid var(--color-retro-yellow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
  padding: 12px 24px 11px 24px;
  gap: 22px;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-right: auto;
  margin-left: 34px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: bold;
  letter-spacing: 0.9px;
  padding: 8px 16px 8px 14px;
  border-radius: 17px;
  color: var(--color-primary);
  background: #fff0d9;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: var(--color-retro-yellow);
  color: var(--color-retro-brown);
}
.btn-primary {
  margin-left: 26px;
}

/* HERO SECTION -------------------------------------------------------------------------------- */
.hero {
  background: url('../assets/vintage-pattern-bg.svg'), linear-gradient(100deg, #ffd97225 24%, #f6f5f5 93%);
  background-size: 1300px auto, cover;
  background-repeat: repeat, no-repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 50px 0 40px 0;
  margin-bottom: var(--section-margin);
}
.hero .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.hero .content-wrapper {
  max-width: 600px;
  padding: 36px 36px 40px 26px;
  background: #fff9f0bb;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 30px #ffd97255;
  border-top: 5.5px solid var(--color-retro-orange);
}
.hero h1 {
  font-size: 2.55rem;
  line-height: 1.13;
  margin-bottom: 9px;
  color: var(--color-retro-brown);
}

/* FOOTER ------------------------------------------------------------------------------------- */
footer {
  background: #ffe6c1;
  border-top: 6px solid var(--color-retro-orange);
  padding: 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 38px 20px;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1260px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 220px;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 5px;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-retro-brown);
  line-height: 1.45;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 0;
  background: transparent;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-retro-brown);
  text-decoration: underline dotted #f9b46c;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-retro-blue);
  letter-spacing: 0.08em;
}

/* MOBILE MENU ---------------------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-retro-brown);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 2.1rem;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2.5px 11px #ffd97246;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 1001;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--color-retro-yellow);
  background: var(--color-retro-orange);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffe6c1ee;
  z-index: 2000;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.41,.52,.21,.97);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 0 0;
  background: var(--color-retro-red);
  color: #fff;
  padding: 10px 18px;
  font-size: 1.8rem;
  border-radius: 13px;
  box-shadow: 0 2.5px 11px #ffd97236;
  cursor: pointer;
  transition: background 0.2s;
  border: 0;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-retro-brown);
  color: var(--color-retro-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 32px 32px 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  padding: 13px 0;
  border-radius: 9px;
  background: transparent;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus, .mobile-nav a.active {
  background: var(--color-retro-yellow);
  color: var(--color-retro-brown);
}

/* COOKIE CONSENT BANNER --------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbd5;
  border-top: 3.5px solid var(--color-retro-yellow);
  box-shadow: 0 0 18px #ffd972bb, 0 2.5px 10px #965d3833;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 17px 22px;
  font-size: 1.05rem;
  color: #54462C;
  animation: slideInUp 0.65s cubic-bezier(.18,.82,.53,1.01);
  gap: 18px;
}
@keyframes slideInUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .banner-text {
  max-width: 510px;
  font-family: var(--font-body);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 9px 24px;
  border-radius: 13px;
  border: 2px solid var(--color-retro-yellow);
  background: var(--color-retro-brown);
  color: #fff;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: var(--color-retro-yellow);
  color: var(--color-retro-brown);
  border-color: var(--color-retro-brown);
}
.cookie-banner .btn-cookie-secondary {
  background: var(--color-retro-yellow);
  color: var(--color-retro-brown);
  border: 2px solid var(--color-retro-brown);
  margin-left: 0;
}
.cookie-banner .btn-cookie-secondary:hover, .cookie-banner .btn-cookie-secondary:focus {
  background: var(--color-retro-red);
  color: #fff;
  border-color: var(--color-retro-red);
}

/* COOKIE PREFERENCES MODAL ------------------------------------------------------ */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(49,44,36,0.38);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fffbd5;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  max-width: 390px;
  width: 100%;
  margin-bottom: 0;
  padding: 32px 28px 22px 28px;
  box-shadow: 0 6.5px 22px #ffd972bb, 0 1.5px 12px #965d3833;
  animation: slideModalIn .37s cubic-bezier(.41,.78,.32,1.02) 0s 1;
}
@keyframes slideModalIn {
  from { transform: translateY(140%); }
  to { transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--color-retro-brown);
}
.cookie-modal ul {
  margin-top: 14px;
  margin-bottom: 9px;
  padding-left: 3px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-category-toggle {
  width: 38px;
  height: 22px;
  appearance: none;
  background: #ffd97299;
  border-radius: 15px;
  border: 2px solid #ffd972;
  position: relative;
  outline: none;
  transition: background .15s;
  cursor: pointer;
}
.cookie-category-toggle:checked {
  background: var(--color-retro-green);
}
.cookie-category-toggle::before {
  content: '';
  display: block;
  position: absolute;
  top: 2px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.5px 2.5px #ffd97243;
  transition: transform 0.16s;
}
.cookie-category-toggle:checked::before {
  transform: translateX(15px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal .btn-cookie {
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 10px;
}

/* SECTION SPACING AND CONTENT WRAPPER ---------------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}

/******** RESPONSIVE DESIGN: MOBILE FIRST ***********/
@media (max-width: 1124px) {
  header .container { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .hero .container { padding-left: 6px; }
}
@media (max-width: 650px) {
  .hero .content-wrapper { padding: 26px 6vw 24px 6vw; }
  .hero {
    padding: 35px 0 20px 0;
    min-height: 230px;
    background-size: 900px auto, cover;
  }
  .page-title, h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
  .section, .benefits, .cta, .cta-section {
    padding: 22px 4vw;
    margin-bottom: 33px;
  }
  ul.feature-grid, ul.service-list, ul.blog-list, .benefits ul {
    gap: 13px;
  }
  ul.feature-grid li, ul.service-list li, ul.blog-list li {
    min-width: 100%;
    max-width: 100%;
    padding: 13px 6vw 10px 6vw;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 17px 8vw 15px 8vw;
  }
  .case-study .content-wrapper,
  .team-section .content-wrapper,
  .about-section .content-wrapper,
  .contact-section .content-wrapper,
  .policy-section .content-wrapper {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}
@media (max-width: 420px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 8px 14px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner .banner-text { max-width: 99vw; }
  .cookie-banner .cookie-buttons {gap: 8px;flex-direction: column;}
}

/********* SCROLLBAR STYLE TO MATCH RETRO AESTHETIC *********/
::-webkit-scrollbar {
  width: 11px;
  background: #ffd97255;
}
::-webkit-scrollbar-thumb {
  background: #a65e2eaa;
  border-radius: 11px;
}

/********* MICRO-ANIMATIONS *********/
.btn-primary, .btn-secondary, .btn-cookie, .cookie-banner {
  transition: background 0.17s, color 0.17s, box-shadow 0.23s;
}

/********* SPECIAL RETRO VINTAGE EFFECTS *********/
.section, .benefits, .cta, .cta-section, .card, .testimonial-card, ul.feature-grid li, ul.service-list li, ul.blog-list li {
  border-radius: var(--border-radius);
  box-shadow: 0 7px 22px #ffd97223, 0 0.5px 5px #a65e2e22;
}

/********* FAQ styles (aplikace) *********/
.faq {
  background: #fff9f0;
  border-radius: var(--border-radius);
  padding: 37px 20px;
  margin-bottom: var(--section-margin);
  box-shadow: 0 3px 22px #FFD97222;
}
.faq h2 {
  color: var(--color-retro-brown);
  text-shadow: none;
}
.faq dl {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.faq dt {
  font-family: var(--font-display);
  color: var(--color-retro-green);
  font-weight: 700;
  margin-top: 10px;
}
.faq dd {
  margin-left: 14px;
  margin-bottom: 9px;
  color: #44472a;
}

/* POLICY SECTION (for privacy, GDPR, cookies, TC, etc) */
.policy-section {
  background: #fffefa;
  padding: 35px 17px 32px 23px;
  border-radius: var(--border-radius);
  margin-bottom: var(--section-margin);
  box-shadow: 0 1.5px 7px #FFD97244, 0 0.5px 2px #A65E2E1a;
}
.policy-section h1 { color: var(--color-retro-brown); margin-bottom: 16px; }
.policy-section h2 { color: var(--color-retro-orange); }
.policy-section ul { margin-left: 15px; }
.policy-section li { margin-bottom: 6px; }

/* MISC COMPONENTS (REFERENCE PAGE) ---------------------------------------------- */
.case-study .content-wrapper, .team-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.case-study h3 {
  font-size: 1.10rem;
  color: var(--color-retro-brown);
}

/* CONTACT INFO (kontakt page) --------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 13px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info img {
  width: 24px;
  height: 24px;
}

/* BLOG LIST (blog.html) */
ul.blog-list {
  gap: 18px;
}
ul.blog-list li {
  min-width: 240px;
  color: var(--color-retro-brown);
  background: #fffefa;
}
ul.blog-list h3 {
  color: var(--color-retro-orange);
  font-size: 1.08rem;
  font-weight: 700;
}
ul.blog-list span {
  font-size: 0.92rem;
  color: var(--color-retro-green);
  font-family: var(--font-display);
  margin-top: 5px;
}

/********* PRINT STYLES *********/
@media print {
  * {
    color: #222!important;
    background: #fff!important;
    box-shadow: none!important;
  }
  nav, .main-nav, .footer-nav, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
