/* ==== CSS RESET & BASE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F7FC;
  color: #22346F;
  line-height: 1.62;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #22346F;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #D7B357;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
}
hr {
  border: 0;
  height: 1px;
  background: #ddd;
}

:root {
  --brand-primary: #22346F;
  --brand-secondary: #D7B357;
  --brand-accent: #F4F7FC;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --border-radius: 14px;
  --shadow-md: 0 2px 18px 0 rgba(34,52,111,0.08);
  --shadow-lg: 0 4px 32px 0 rgba(34,52,111,0.13);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #22346F;
  line-height: 1.18;
}
h1 {
  font-size: 2.65rem;
  margin: 0 0 16px 0;
}
h2 {
  font-size: 2.1rem;
  margin: 0 0 16px 0;
}
h3 {
  font-size: 1.32rem;
  margin: 0 0 12px 0;
}
h4 {
  font-size: 1rem;
}
p, li, address {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 12px;
  color: #22346F;
}
strong, b {
  font-weight: 700;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  width: 100%;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 74px;
}
.logo img {
  height: 44px;
  display: block;
}
nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #22346F;
  position: relative;
  padding: 6px 2px;
  transition: color 0.18s;
}
nav a:hover, nav a.active {
  color: #D7B357;
}
nav a.active:after, nav a:hover:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  border-radius: 3px;
  background: #D7B357;
  display: block;
}

/* ==== PRIMARY & SECONDARY BUTTONS ==== */
.cta-primary, .cta-secondary, button.cta-primary, button.cta-secondary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.04rem;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: var(--shadow-md);
  text-align: center;
  margin: 8px 0;
}
.cta-primary {
  background: var(--brand-primary);
  color: #fff;
  letter-spacing: .02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1a264a;
  color: var(--brand-secondary);
}
.cta-secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: 2px solid var(--brand-secondary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #fff;
  color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  box-shadow: 0 4px 16px 0 rgba(215,179,87,0.13);
}

button, .btn {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 16px;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  z-index: 131;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover {
  background: #D7B357;
  color: var(--brand-primary);
  box-shadow: 0 1px 8px rgba(34,52,111,0.11);
}
.mobile-menu {
  position: fixed;
  z-index: 130;
  inset: 0;
  background: rgba(34,52,111,0.95);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.72,.13,.62,1.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  justify-content: flex-start;
  width: 100vw;
  height: 100vh;
  opacity: 0.94;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  border: none;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-left: 32px;
  margin-top: 38px;
  width: 70vw;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.38rem;
  padding: 13px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-weight: 800;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

@media (max-width: 1100px) {
  nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 8px;
  }
}
@media (max-width: 860px) {
  nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 861px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(100deg, #F4F7FC 65%, #D7B357 100%);
  border-radius: 0 0 28px 28px;
  margin-bottom: 54px;
  padding-top: 42px;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-md);
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 14px;
}
.hero h1 {
  color: #22346F;
  font-size: 2.4rem;
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  color: #22346F;
}
.hero .cta-primary {
  margin-top: 10px;
}

/* ==== SECTION LAYOUTS ==== */
.section,
main > section:not(.hero) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
main > section:last-child {
  margin-bottom: 32px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* ==== CARD & GRID LAYOUTS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 26px 22px;
  min-width: 250px;
  flex: 1 1 260px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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 & NEWS TEASERS ==== */
.feature-grid, .ad-types-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  align-items: stretch;
}
.feature-grid > div, .ad-types-grid > div, .services-grid > div {
  background: #F4F7FC;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 22px 20px 18px 20px;
  min-width: 180px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.feature-grid img, .ad-types-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  filter: grayscale(0%) saturate(165%);
}

.news-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.news-teaser-list article {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  padding: 22px 18px 18px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 5px solid #D7B357;
  transition: box-shadow 0.21s, border-color 0.21s;
}
.news-teaser-list article:hover {
  border-left: 5px solid #22346F;
  box-shadow: var(--shadow-lg);
}
.news-teaser-list article h3 {
  margin-bottom: 6px;
}
.news-teaser-list article a {
  align-self: flex-start;
  color: var(--brand-primary);
  font-weight: 800;
  margin-top: 8px;
  padding: 4px 0;
  border-bottom: 2px solid var(--brand-secondary);
  transition: color 0.14s, border-color 0.14s;
}
.news-teaser-list article a:hover {
  color: #D7B357;
  border-color: #22346F;
}

.event-snippets, .event-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.event-snippets > div, .event-listings > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #F4F7FC;
  border-radius: var(--border-radius);
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

/* ==== SPECIAL BANNERS ==== */
.newsletter-banner {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  margin-bottom: 54px;
}
.newsletter-banner h2, .newsletter-banner p {
  color: var(--brand-primary);
}
.newsletter-banner .cta-primary {
  background: #fff;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
}
.newsletter-banner .cta-primary:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* ==== FILTER BARS ==== */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.filter-bar input[type=text] {
  border: 2px solid #D7B357;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  max-width: 340px;
  margin-bottom: 2px;
}
.category-filters {
  display: flex;
  flex-direction: row;
  gap: 9px;
}
.category-filters button {
  background: #F4F7FC;
  color: #22346F;
  border: 2px solid #D7B357;
  border-radius: 7px;
  padding: 7px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.category-filters button:hover, .category-filters button.active {
  background: #D7B357;
  color: #22346F;
}

.calendar-search input[type=text] {
  border: 2px solid #D7B357;
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  max-width: 340px;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ==== FAQ ACCORDION (simple open style) ==== */
.faq-accordion, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div, .faq-list > div {
  background: #F4F7FC;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 22px 18px;
  margin-bottom: 12px;
  color: var(--brand-primary);
  transition: box-shadow 0.18s;
}
.faq-accordion > div:hover, .faq-list > div:hover {
  box-shadow: var(--shadow-lg);
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #F4F7FC;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 32px 0 24px 0;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 18px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: #22346F;
}
.pricing-table th {
  background: #D7B357;
  color: #22346F;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.pricing-table tr {
  border-bottom: 1px solid #E8E8E8;
}

/* ==== FEATURED BENEFIT LIST ==== */
.benefit-list, .service-highlights {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-list li, .service-highlights li {
  background: #F4F7FC;
  border-left: 5px solid #D7B357;
  border-radius: var(--border-radius);
  padding: 13px 14px 11px 18px;
  margin-bottom: 7px;
  font-family: var(--font-body);
  font-weight: 700;
  color: #22346F;
  box-shadow: var(--shadow-md);
}

/* ==== TESTIMONIAL CARDS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 7px solid #D7B357;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  color: #22346F;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #22346F;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card strong {
  display: block;
  font-size: 1rem;
  color: #22346F;
  margin-left: 10px;
}

/* ==== CONTACT INFO & MAP ==== */
.contact-info, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background-color: #646464;
  margin-bottom: 18px;
}
.map-embed {
  margin-top: 10px;
}

/* ==== FOOTER ==== */
footer {
  background: #22346F;
  color: #fff;
  font-size: 1rem;
  padding: 48px 0 32px 0;
  margin-top: 32px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  opacity: .97;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.14s, border-bottom 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #D7B357;
  border-bottom: 2px solid #D7B357;
}
.footer-contact strong {
  color: #D7B357;
  margin-bottom: 4px;
  font-size: 1.12rem;
}
.footer-contact address {
  color: #fff;
  font-family: var(--font-body);
  font-style: normal;
  margin-bottom: 7px;
}
.footer-contact a {
  color: #D7B357;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #22346F;
  color: #fff;
  box-shadow: 0 -4px 32px 0 rgba(34,52,111,0.23);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 26px;
  z-index: 9998;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.33s, opacity 0.18s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner p {
  margin-bottom: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-consent-banner button {
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cookie-consent-banner .accept {
  background: var(--brand-secondary);
  color: #22346F;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #fff;
  color: #D7B357;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: #22346F;
  border: 2px solid #D7B357;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: var(--brand-secondary);
  color: #22346F;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: #D7B357;
  border: 2px solid #D7B357;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #D7B357;
  color: #22346F;
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,52,111,0.65);
  z-index: 9999;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px;
  width: 92vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #22346F;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 800;
}
.cookie-category {
  background: #F4F7FC;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 14px 13px 11px 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 7px;
}
.cookie-category label {
  color: #22346F;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: #D7B357;
  width: 18px;
  height: 18px;
}
.cookie-category input[disabled] {
  filter: grayscale(.6);
  opacity: 0.65;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  background: var(--brand-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal .modal-close:hover {
  background: #D7B357;
  color: #22346F;
}

/* ==== FORM STYLES ==== */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  max-width: 440px;
}
input[type=email], input[type=text], input[type=password], textarea {
  border: 2px solid #D7B357;
  border-radius: 9px;
  padding: 13px 14px;
  font-size: 1.04rem;
  background: #fff;
  color: #22346F;
  transition: border-color 0.15s;
}
input:focus, textarea:focus {
  border-color: #22346F;
}
label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #22346F;
  margin-left: 4px;
}

button[type=submit].cta-primary {
  margin-top: 14px;
}

/* ==== RESPONSIVE DESIGN & MOBILE FIRST ==== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 950px) {
  .container { max-width: 90vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.12rem; }
  .section, main > section:not(.hero) {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 16px; }
  .feature-grid, .ad-types-grid, .services-grid, .news-teaser-list, .event-snippets, .event-listings {
    gap: 13px;
  }
  .feature-grid > div, .ad-types-grid > div, .services-grid > div, .news-teaser-list article, .event-snippets > div, .event-listings > div {
    min-width: 98vw;
    max-width: 98vw;
    margin-bottom: 16px;
    padding: 18px 12px;
  }
  .testimonial-card, .faq-accordion > div, .faq-list > div {
    margin-bottom: 15px;
    padding: 14px 9px;
  }
  .footer-menu { flex-direction: column; gap: 10px; }
  footer .container { flex-direction: column; gap: 16px; }
  .newsletter-banner { padding: 20px 6px; }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 16px;
  }
  .hero {
    padding-top: 20px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 35px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    padding: 15px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 26px 9px;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .hero h1 { font-size: 1.41rem; }
  .footer-menu, .footer-contact { font-size: 0.97rem; }
}

/* ==== MICRO-INTERACTIONS & TRANSITIONS ==== */
.card, .news-teaser-list article, .event-snippets > div, .feature-grid > div, .ad-types-grid > div, .services-grid > div, .faq-accordion > div, .faq-list > div {
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .news-teaser-list article:hover, .event-snippets > div:hover, .feature-grid > div:hover, .services-grid > div:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px) scale(1.027);
}
.cta-primary, .cta-secondary, button.cta-primary, button.cta-secondary {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.12s;
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}

/* ==== SPECIAL UTILITIES ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* No absolute positioning for main content; only for decorative if needed. */

/* ==== END CSS ==== */
