/* ====================================================
   RESET & BASE TYPOGRAPHY
   ==================================================== */
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;
  scroll-behavior: smooth;
}
body {
  background: #f7f7f9;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2C3642;
  text-decoration: none;
  transition: color .2s;
  outline: none;
}
a:hover, a:focus {
  color: #7B9682;
  text-decoration: underline wavy #7B9682 1.5px;
}
strong, b {
  font-weight: 600;
}
ul, ol {
  padding-left: 32px;
  margin-bottom: 16px;
}
section ul {
  list-style: disc inside;
}
section ol {
  list-style: decimal inside;
}

/* ===============================================
   BRAND COLORS & TYPOGRAPHY
   =============================================== */
:root {
  --primary: #2C3642;
  --secondary: #7B9682;
  --accent: #E6E9ED;
  --vibrant-1: #E66D35;     /* warm orange */
  --vibrant-2: #19B2E2;     /* bright blue */
  --vibrant-3: #E43583;     /* magenta/coral */
  --art-black: #16181c;
  --light-bg: #f7f7f9;
  --card-bg: #fff;
  --radius-lg: 22px;
  --radius: 14px;
  --duration: 0.33s;
  --shadow: 0px 6px 24px rgba(44,54,66,0.07);
  --shadow-alt: 0px 2px 14px rgba(123,150,130,0.08);
  --banner-bg: #fffbe9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.16;
}
h1 {
  font-size: 2.8rem;
  color: var(--vibrant-3);
  margin-bottom: 14px;
}
h2 {
  font-size: 2.2rem;
  color: var(--vibrant-1);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

p, li {
  font-size: 1.09rem;
  margin-bottom: 10px;
}
section p, section ul, section ol {
  color: var(--primary);
}
.testimonials-author, .testimonials-author span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vibrant-2);
}

/* ================ CONTAINER & STRUCTURE ================ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
  width: 100%;
  background: var(--art-black);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: var(--shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 14px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.04rem;
  position: relative;
  padding: 7px 9px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
nav a:hover, nav a:focus {
  color: var(--vibrant-1);
  background: #fff2ea;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  margin-left: 22px;
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--vibrant-1);
  color: #fff;
}

/* ------- MOBILE BURGER MENU -------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25,25,27,0.80);
  z-index: 10002;
  transform: translateX(100%);
  transition: transform var(--duration) cubic-bezier(.86,.1,.57,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  background: var(--vibrant-1);
  font-size: 2.4rem;
  border: none;
  border-radius: 50%;
  margin: 22px 18px 0 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s;
  z-index: 3;
  position: relative;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vibrant-3);
}
.mobile-nav {
  background: var(--card-bg);
  width: 290px;
  padding: 44px 0 0 0;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow-alt);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: background .25s;
  position: relative;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  padding: 16px 28px 16px 40px;
  width: 100%;
  border-radius: 0 30px 30px 0;
  margin-bottom: 2px;
  font-weight: 600;
  background: transparent;
  transition: background .20s, color .18s;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--vibrant-1);
  background: #fff4e6;
}
@media (max-width: 1130px) {
  nav {
    gap: 16px;
  }
}
@media (max-width: 980px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header .container {
    height: 68px;
    padding: 0 4px;
  }
  .mobile-nav {
    width: 95vw;
    min-width: 0;
  }
}

/* ===================== CTA & BUTTONS ===================== */
.cta-btn,
button, .button, .newsletter input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: linear-gradient(82deg,var(--vibrant-1) 65%,var(--vibrant-2));
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.24rem;
  margin-top: 10px;
  box-shadow: 0 2px 24px 0 rgba(230,109,53,0.14);
  letter-spacing: .04em;
  transition: background .27s, color .27s, box-shadow .3s, transform .2s;
  cursor: pointer;
  outline: none;
  position: relative;
}
.cta-btn:hover,
button:hover,
.button:hover,
.newsletter input[type="submit"]:hover, .cta-btn:focus, button:focus, .button:focus {
  background: linear-gradient(120deg,var(--vibrant-2) 55%,var(--vibrant-3));
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 32px 0 rgba(25,178,226,0.22);
  text-decoration: none;
}

/* ===== CARD PATTERNS & GRIDS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-alt);
  padding: 28px 24px;
  flex: 1 1 300px;
  min-width: 270px;
  max-width: 406px;
  transition: box-shadow .25s, transform .2s;
  border: 2.5px solid transparent;
  z-index: 1;
}
.card:hover, .card:focus-within {
  border-color: var(--vibrant-1);
  box-shadow: 0 4px 28px 0 rgba(228,53,131,0.13);
  transform: translateY(-3px) scale(1.01);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.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,
  .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* ====================== TESTIMONIALS ====================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 22px 0 rgba(123,150,130,0.055);
  border-left: 6px solid var(--vibrant-2);
  margin-bottom: 20px;
  max-width: 640px;
  transition: box-shadow .21s, border-color .22s;
  color: #222; /* dark text for readability */
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left-color: var(--vibrant-3);
  box-shadow: 0 6px 36px 0 rgba(25,178,226,0.17);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.testimonials-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--vibrant-2);
  font-size: 1.02rem;
  font-weight: bold;
}
.testimonial-card span:last-child {
  color: var(--vibrant-1);
  font-size: 1.27rem;
  font-weight: bold;
}

/* ====================== FEATURE LIST ITEM ====================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =============== NEWSLETTER =============== */
.newsletter {
  margin: 20px 0;
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: 0 1px 18px 0 rgba(44,54,66,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.newsletter p {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.newsletter input[type="email"] {
  border: 1.5px solid var(--secondary);
  border-radius: 11px;
  padding: 10px 15px;
  font-size: 1rem;
  margin-right: 8px;
  outline: none;
}
.newsletter input[type="submit"] {
  margin-top: 0;
}

/* =============== FOOTER =============== */
footer {
  background: var(--art-black);
  color: #fff;
  padding: 36px 0 12px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 1.08rem;
}
footer nav a {
  color: #fff;
  opacity: 0.86;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background .19s, color .19s;
  font-weight: 600;
}
footer nav a:hover, footer nav a:focus {
  color: var(--vibrant-2);
  background: #21222b;
}
footer .newsletter {
  width: 370px;
  min-width: 200px;
  margin: 0;
  background: var(--secondary);
  color: #fff;
}
footer .newsletter p { color: #fff; }
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  justify-content: center;
  transition: box-shadow .19s, background .18s;
  box-shadow: 0 0 8px 0 rgba(230,109,53,0.07);
}
.social-links a:hover, .social-links a:focus {
  background: var(--vibrant-3);
  box-shadow: 0 2px 22px 0 rgba(228,53,131,0.19);
}
.social-links img {
  width: 22px;
  height: 22px;
  filter: grayscale(15%) contrast(1.1);
}
@media (max-width: 830px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  footer .newsletter {
    width: 100%;
    min-width: 0;
  }
}

/* =============== SECTION SPACING =============== */
section:not(:last-child) {
  margin-bottom: 60px;
}

/* ============ CATALOG: CATEGORY NAVIGATION ============ */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.category-nav a {
  background: var(--vibrant-2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 19px;
  font-size: 0.96rem;
  font-weight: 600;
  transition: background .2s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.category-nav a:hover, .category-nav a:focus {
  background: var(--vibrant-1);
  color: #fff;
}
.bullet {
  font-size: 0.99rem;  color: var(--vibrant-3);
  margin-top: 8px;
}
.bullet span {
  margin-right: 6px;
  font-weight: 600;
  color: var(--vibrant-2);
}

/* =============== TEAM SECTION =============== */
.team-card {
  margin-bottom: 20px;
  background: var(--light-bg);
  border-left: 5px solid var(--vibrant-1);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(44,54,66,0.07);
  padding: 22px 20px;
  max-width: 490px;
  transition: transform .21s, border-color .2s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.team-card:hover {
  border-left-color: var(--vibrant-2);
  transform: translateY(-2.5px) scale(1.012);
}

/* =================== OL, UL for Creative Artistic =================== */
section ul li::marker, section ol li::marker {
  color: var(--vibrant-3);
  font-size: 1.07em;
}

/* =================== FORMS (Contact, Reservation, etc.) =================== */
input, textarea, select {
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  width: 100%;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  transition: border-color .18s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vibrant-1);
  box-shadow: 0 4px 12px 0 rgba(230,109,53,0.03);
  outline: 2px solid var(--vibrant-2);
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 2px;
}

/* ========================= COOKIE CONSENT BANNER ========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50000;
  background: var(--banner-bg);
  box-shadow: 0 -3px 36px 0 rgba(230,109,53,0.12);
  width: 100vw;
  padding: 30px 16px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1.1rem;
  animation: cookieBannerSlideUp .6s cubic-bezier(.77,.2,.58,1.0) 0s 1;
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(120%); }
  to   { transform: translateY(0); }
}
.cookie-banner p {
  flex: 1 1 320px;
  color: var(--primary);
  font-size: 1.06rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: 22px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 17px;
  border: none;
  background: var(--vibrant-2);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  min-width: 110px;
  transition: background .18s, color .18s, transform .16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--vibrant-1);
  transform: scale(1.05);
}
.cookie-banner .cookie-settings-btn {
  background: var(--vibrant-3);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 6px 14px 6px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-btns {
    margin-left: 0;
    gap: 10px;
  }
}

/* ================= COOKIE SETTINGS MODAL ================= */
.cookie-modal-overlay {
  position: fixed;
  z-index: 50003;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(44,54,66,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--duration);
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 56px 0 rgba(25,178,226,0.06);
  padding: 40px 32px 32px 32px;
  min-width: 320px;
  max-width: 94vw;
  animation: modalDropIn .3s cubic-bezier(.5,.9,.5,1.2) 0s 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@keyframes modalDropIn {
  from { transform: translateY(-50px) scale(.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--vibrant-2);
  font-size: 1.45rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-cat input[type="checkbox"] {
  accent-color: var(--vibrant-1);
}
.cookie-modal .cookie-cat .always-on {
  color: var(--vibrant-1);
  font-weight: bold;
  font-size: 1.06em;
  margin-left: 3px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: var(--vibrant-3);
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.4em;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--vibrant-1);
}
.cookie-modal .cookie-actions {
  margin-top: 16px;
  display: flex;
  gap: 18px;
}
.cookie-modal .cookie-actions button {
  font-size: 1rem;
}

@media (max-width: 460px) {
  .cookie-modal {
    padding: 19px 8px 17px 8px;
    min-width: 0;
    width: 97vw;
  }
}

/* =============== ANIMATION UTILS =============== */
.fade-in {
  animation: fadeIn .35s ease 
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============== ARTISTIC/CREATIVE & UNIQUE ELEMENTS =============== */
h1, h2 {
  letter-spacing: 0.04em;
  background: linear-gradient(90deg,var(--vibrant-2),var(--vibrant-1),var(--vibrant-3));
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientText 7s linear infinite alternate;
}
@keyframes gradientText {
  0% {background-position: 0 50%;}
  100% {background-position: 100% 50%;}
}
.section {
  /* generous artistic border shadow for creative accent */
  box-shadow: 0 14px 66px -20px #e66d3526, 0 2px 5px 0 #7b968210;
  border-radius: var(--radius-lg);
}

.card::after {
  content: "";
  position: absolute;
  top: -17px;
  left: -7px;
  width: 45px;
  height: 45px;
  background: radial-gradient(circle, var(--vibrant-1) 0%, transparent 80%);
  opacity: 0.19;
  border-radius: 48px 6px 20px 88px;
  z-index: 0;
  pointer-events: none;
}

.card::before {
  content: "";
  position: absolute;
  bottom: -13px; right: -17px;
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, var(--vibrant-2) 10%, transparent 75%);
  opacity: 0.13;
  border-radius: 10px 24px 65px 4px;
  z-index: 0;
  pointer-events: none;
}

/* ============ FANCY HR & SEPARATOR ============ */
hr {
  border: none;
  height: 2.5px;
  background: linear-gradient(90deg,var(--vibrant-3),var(--vibrant-1),var(--vibrant-2));
  border-radius: 7px;
  margin: 32px 0;
  width: 50%;
  opacity: .66;
  min-width: 138px;
}

/* ================ RESPONSIVE UTILS =============== */
@media (max-width: 600px) {
  .newsletter { padding: 13px 6px; }
  .section { padding: 15px 3px; }
  footer {
    padding: 14px 0 6px 0;
  }
}

/* =========================== MICRO-INTERACTIONS & HOVER EFFECTS ====================== */
a, nav a, .cta-btn, button, .button, .social-links a, .mobile-nav a {
  transition: color .18s, background .17s, box-shadow .17s, transform .18s;
}
.card, .card-container, .testimonial-card, .feature-item, .section {
  transition: box-shadow .21s, border-color .23s, background .19s;
}

/* ================= SCROLLBAR STYLES (Desktop only) ================= */
@media (min-width: 980px) {
  ::-webkit-scrollbar {
    width: 8px;
    background: var(--accent);
    border-radius: 9px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--vibrant-1);
    border-radius: 11px;
    opacity: 0.9;
  }
}

/* ==================== UTILITIES & CLASSES ==================== */
.mt-0 { margin-top:0; }
.mt-1 { margin-top:8px; }
.mt-2 { margin-top:16px; }
.mt-3 { margin-top:24px; }
.mb-0 { margin-bottom:0; }
.mb-1 { margin-bottom:8px; }
.mb-2 { margin-bottom:16px; }
.mb-3 { margin-bottom:24px; }
.text-center { text-align:center; }
.text-right { text-align:right; }
.text-accent { color:var(--vibrant-2) !important; }

/* ============= FOCUS OUTLINE =============== */
:focus-visible {
  outline: 2.5px solid var(--vibrant-3);
  outline-offset: 2px;
  transition: outline .13s;
}

/* =================== MOBILE FIRST COLUMN TO ROW =============== */
@media (min-width: 800px) {
  .content-grid, .card-container, .text-image-section, .feature-item, .footer .content-wrapper {
    flex-direction: row;
  }
}

/* ==================== LAYOUT PATTERN ENFORCEMENT (MANDATORY) ==================== */
.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; }

/* Make sure minimum 20px margin/gap between all containers */
.section, .card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
