/* ===========================================================
   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;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF;
  color: #28385E;
  letter-spacing: 0.01em;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===========================================================
   BRAND & PLAYFUL_DYNAMIC VARIABLES
   ======================================================= */
:root {
  --primary: #28385E;
  --secondary: #9BCBC0;
  --accent: #F3E8D2;
  --contrast-bg: #FFF8E6;
  --highlight: #EE6C4D;
  --pink: #FFB5D2;
  --teal: #43D9BE;
  --yellow: #FFE877;
  --card-shadow: 0 6px 32px rgba(40,56,94,0.10);
  --border-radius: 26px;
  --transition-main: 0.3s cubic-bezier(.61,.23,.59,.98);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --header-height: 70px;
  --cta-gradient: linear-gradient(90deg, #FFD361 0%, #43D9BE 100%);
  --footer-bg: #FAF9F5;
}

/* ===========================================================
   TYPOGRAPHY
   ======================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: 0.035em;
}
h1 { font-size: 2.3rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #28385E;
  font-family: var(--font-body);
}
strong { font-weight: bold; color: var(--primary); }

@media (min-width: 600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

/* Fun playful headings */
h1, h2, h3 {
  position: relative;
  z-index: 1;
  line-height: 1.15;
  /* Bubbly text effect */
  text-shadow: 0 3px 14px rgba(67,217,190,0.06), 0 2px 0 #FFE877;
}

.section h2, .section h1 {
  margin-bottom: 28px;
  background: var(--yellow);
  padding: 4px 18px 4px 14px;
  border-radius: 18px;
  display: inline-block;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(255,216,58,0.08);
}

.text-section h2,
.text-section h3,
.text-section h4 {
  margin-bottom: 12px;
  background: none;
  box-shadow: none;
  padding: 0;
}

/* Fun, playful list bullet icons */
ul li::before, ol li::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 9px;
  vertical-align: middle;
}

@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  p, ul, li { font-size: 0.97rem; }
}

/* ===========================================================
   LAYOUT - FLEXBOX STRUCTURE
   ======================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
}

.main, main {
  min-height: 70vh;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
  border-radius: var(--border-radius);
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
  .section {
    padding: 60px 36px;
  }
}

/* Features – always flexbox */
.features-grid, .collections-preview, .collections-list, .aroma-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.features-grid > div, .collections-preview > div, .collections-list > div, .aroma-variants > div {
  background: var(--accent);
  border-radius: 20px;
  padding: 22px 18px 14px;
  box-shadow: var(--card-shadow);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}
.features-grid img, .collections-list img, .aroma-variants img,
.eco-labels img, .footer-contact img, ul li img {
  width: 32px; height: 32px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .features-grid, .collections-preview, .collections-list, .aroma-variants {
    gap: 20px;
  }
  .features-grid > div, .collections-list > div, .aroma-variants > div, .collections-preview > div {
    min-width: 150px;
    max-width: 100%;
    flex: 1 1 100%;
  }
}


/* Section cta-banner playful style */
.cta-banner {
  margin-bottom: 0;
  padding: 32px 18px;
  background: var(--teal);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px rgba(67, 217, 190, 0.12);
  color: #28385E;
  position: relative;
  overflow: hidden;
  animation: ctaBounceIn 0.85s 1;
}
@keyframes ctaBounceIn {
  0% { transform: scale(0.9) translateY(40px); opacity: 0; }
  80% { transform: scale(1.05) translateY(0); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cta-banner h2, .cta-banner p {
  color: #28385E;
}

/* ===========================================================
   HEADER / NAVBAR
   ======================================================= */
header {
  width: 100%;
  background: var(--primary);
  color: #fff;
  min-height: var(--header-height);
  box-shadow: 0 4px 24px rgba(40,56,94,0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 18px;
}
header img {
  height: 46px;
  display: block;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 2;
}
nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 14px;
  position: relative;
  transition: background 0.17s, color 0.17s;
}
nav a:not(.cta-btn):hover,
nav a:not(.cta-btn):focus {
  background: var(--teal);
  color: var(--primary);
}
.cta-btn {
  background: var(--cta-gradient);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 20px;
  padding: 8px 28px;
  font-size: 1.12rem;
  margin-left: 8px;
  box-shadow: 0 3px 14px rgba(67,217,190,0.13);
  position: relative;
  transition: background 0.18s, box-shadow 0.18s, transform 0.11s;
  outline: none;
  cursor: pointer;
  animation: ctaPopIn 0.65s 1;
}
@keyframes ctaPopIn {
  0% { opacity: 0; transform: scale(0.9) translateY(-30px); }
  100% { opacity: 1; transform: scale(1) translateY(0px); }
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFE877 0%, #FFB5D2 100%);
  color: var(--primary);
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 2px 10px 3px rgba(255,215,98,0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: inline-flex;
  background: var(--teal);
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 3px solid #fff;
  margin-left: 12px;
  transition: box-shadow 0.2s, background 0.16s;
  z-index: 25;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--yellow);
  box-shadow: 0 2px 14px 2px var(--pink);
}

@media (min-width: 1100px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 1099px) {
  nav {
    display: none;
  }
}

/* ===========================================================
   MOBILE MENU OVERLAY
   ======================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(250, 255, 246, 0.98);
  z-index: 44;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-101vw);
  transition: transform 0.37s var(--transition-main);
  box-shadow: 0 14px 56px rgba(67,217,190,0.12);
  padding: 30px 16px 0 28px;
}
.mobile-menu.open {
  transform: translateX(0vw);
  transition: transform 0.37s var(--transition-main);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  color: var(--primary);
  background: var(--yellow);
  border-radius: 50%;
  border: 2px solid var(--pink);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  margin-right: 4px;
  transition: box-shadow 0.17s, background 0.11s;
  z-index: 50;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--teal);
  color: var(--accent);
  box-shadow: 0 2px 10px var(--teal);
}
.mobile-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  padding: 16px 7px;
  background: var(--accent);
  border-radius: 18px;
  font-weight: 800;
  font-size: 1.13rem;
  box-shadow: 0 3px 13px rgba(255,181,210,0.07);
  margin-bottom: 4px;
  transition: background 0.15s, color 0.06s, transform 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--yellow);
  color: #2a5e4f;
  transform: scale(1.04) rotate(-2.5deg);
}

/* Hide mobile menu by default on desktop */
@media (min-width: 1100px) {
  .mobile-menu { display: none !important; }
}

/* ===========================================================
   HERO
   ======================================================= */
.hero {
  background: var(--contrast-bg);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 6px 38px rgba(248,208,120,0.08);
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
  animation: fadeInSlide 0.9s 1;
}
@keyframes fadeInSlide {
  0% { opacity:0; transform: translateY(30px) scale(0.965); }
  80% { opacity:0.98; transform: translateY(-4px) scale(1.01); }
  100%{ opacity:1; transform: none; }
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  background: none;
  box-shadow: none;
  padding: 0;
  color: var(--primary);
  font-weight: 900;
}
.hero .cta-btn {
  margin-top: 20px;
}

/* ===========================================================
   CARDS, GRIDS, FEATURES, TESTIMONIALS
   ======================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: 22px;
  padding: 26px 16px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 180px;
  flex: 1 1 260px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 12px 30px 0 rgba(255,181,210,0.14), 0 2px 8px rgba(67,217,190,0.10);
  transform: translateY(-6px) scale(1.025) rotate(-2deg);
}

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

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

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

/* ===== Testimonials ===== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 26px rgba(67, 217, 190, 0.16), 0 1.5px 3px #FFD36140;
  padding: 20px;
  min-width: 220px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: transform 0.15s, box-shadow 0.16s;
  font-size: 1.08rem;
  color: #222;
  animation: testimonialBounceIn 0.75s 1;
}
@keyframes testimonialBounceIn {
  0% { opacity: 0; transform: translateX(-80px) scale(0.8);}
  70%{ opacity: 0.89; transform: translateX(16px) scale(1.07); }
  100%{ opacity: 1; transform: none; }
}
.testimonial-card strong {
  color: var(--teal);
  font-weight: 700;
  font-family: var(--font-display);
  margin-left: 12px;
}
.testimonial-card p {
  color: #313131;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(67,217,190,0.20), 0 3px 6px #FFD36160;
  transform: translateY(-4px) scale(1.018) rotate(0.5deg);
}
.rating-summary p {
  color: #28385E;
  font-size: 1.1rem;
  margin-top: 15px;
  font-weight: 500;
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===========================================================
   FORM ELEMENTS (if used in future forms)
   ======================================================= */
input, textarea, select {
  font-family: var(--font-body);
  border-radius: 12px;
  border: 2px solid var(--secondary);
  padding: 10px 12px;
  background: #FFF;
  font-size: 1rem;
  color: #28385E;
  box-shadow: 0 1px 3px #FFD36133;
  transition: border 0.12s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
  box-shadow: 0 2px 4px #43D9BE89;
  outline: none;
}
label {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ===========================================================
   MISCELLANEOUS & PAGE SECTIONS
   ======================================================= */
.eco-labels {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
}

ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: decimal inside;
  margin-bottom: 16px;
  margin-left: 20px;
}
ol li::before, ul li img {
  content: '';
  margin: 0;
  background: none;
}

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

/* ===========================================================
   FOOTER
   ======================================================= */
footer {
  background: var(--footer-bg);
  color: var(--primary);
  width: 100%;
  margin-top: 48px;
  font-size: 0.98rem;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -3px 32px rgba(67,217,190,0.08);
  z-index: 2;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  padding: 36px 14px 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--accent);
  border-radius: 14px;
  padding: 8px 14px;
  transition: background 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--yellow);
}
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  color: #2a5e4f;
  font-size: 1rem;
}
.footer-contact img {
  width: 26px; height: 26px;
  background: var(--yellow);
  border-radius: 10px;
  padding: 3px;
}
.copyright {
  margin-top: 12px;
  color: #79879b;
  font-size: 0.91rem;
}

@media (max-width: 600px) {
  footer .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* ===========================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 6px 36px 3px #43D9BE33,0 2px 8px #ffd36122;
  padding: 18px 26px 18px 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: opacity 0.28s, transform 0.35s;
  opacity: 1;
  animation: cookieFloatIn 0.55s 1;
}
@keyframes cookieFloatIn {
  0% { opacity: 0; transform: translateY(42px) scale(0.94); }
  100%{ opacity: 1; transform: none; }
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px) scale(0.92);
}
.cookie-banner p {
  margin: 0;
  color: #28385E;
  font-family: var(--font-body);
}
.cookie-btn {
  background: var(--teal);
  color: var(--primary);
  border: none;
  border-radius: 16px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 1.06rem;
  margin-left: 7px;
  cursor: pointer;
  transition: background 0.13s, color 0.11s, box-shadow 0.16s;
  font-family: var(--font-display);
  box-shadow: 0 1px 6px #43D9BE33;
}
.cookie-btn.accept {
  background: var(--yellow);
  color: #28385E;
}
.cookie-btn.reject {
  background: var(--pink);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--cta-gradient);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 8px #ffd36133;
}
/* Cookie modal overlay */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(40,56,94,0.17);
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s 1;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  0%{ opacity: 0; }
  100%{ opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0px 6px 44px 0px #43D9BE55,0 2px 8px #ffd36122;
  max-width: 370px;
  padding: 36px 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-size: 1.07rem;
  color: var(--primary);
  position: relative;
  animation: modalUpIn 0.43s 1;
}
@keyframes modalUpIn {
  0%{ transform: translateY(88px) scale(0.94); opacity: 0; }
  60%{ transform: translateY(-14px) scale(1.02); opacity: 1; }
  100%{ transform: none;}
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.cookie-category label {
  font-weight: 600;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 22px;
  background: var(--teal);
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  transition: background 0.13s;
}
.cookie-toggle input {
  opacity: 0;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  cursor: pointer;
}
.cookie-toggle .slider {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 2px 6px #43D9BE1a;
  transition: left 0.18s;
}
.cookie-toggle input:checked + .slider {
  left: 21px;
  background: var(--yellow);
}
.cookie-modal .cookie-btn {
  margin: 6px 6px 0 0;
  min-width: 90px;
}
.cookie-modal-close {
  position: absolute;
  right: 15px; top: 12px;
  font-size: 1.44rem;
  background: var(--teal);
  color: var(--primary);
  border-radius: 10px;
  border: 1.8px solid var(--accent);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s, color 0.1s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--pink);
  color: #fff;
}

@media (max-width: 620px) {
  .cookie-banner {
    left: 10px; right: 10px; bottom: 10px;
    padding: 12px 8px 12px 12px;
    flex-direction: column;
    gap: 10px;
    font-size: 0.98rem;
    min-width: 180px;
  }
  .cookie-modal-content { max-width: 96vw; padding: 20px 10px 8px 10px; }
}

/* ===========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ======================================================= */
*:focus-visible {
  outline: 2.3px dashed var(--teal);
  outline-offset: 1px;
}
button:active, a:active {
  transform: scale(0.98);
}
button:disabled, .cta-btn:disabled, .cookie-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Animated decorative confetti effect for playful dynamic mood */
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: 18px; bottom: 10px;
  width: 32px; height: 32px;
  background: radial-gradient(circle at 18px 18px, var(--yellow) 0 46%, transparent 61%),
              radial-gradient(circle at 10px 24px, var(--pink) 0 50%, transparent 60%),
              radial-gradient(circle at 22px 6px, var(--teal) 0 56%, transparent 64%);
  opacity: 0.77;
  z-index: 0;
  animation: confettiDance 2.7s infinite linear;
  pointer-events: none;
}
@media (max-width: 800px) {
  .section:after { display: none; }
}
@keyframes confettiDance {
  0% { transform: translateY(0) rotate(0deg); }
  30%{ transform: translateY(-7px) rotate(13deg); }
  60%{ transform: translateY(5px) rotate(-20deg); }
  100%{ transform: translateY(0) rotate(0deg); }
}
.section {
  z-index: 1;
}

/* ===========================================================
   RESPONSIVE ADJUSTMENTS
   ======================================================= */
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  header .container {
    padding: 0 8px;
  }
  .footer-links {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .section { padding: 22px 7px; margin-bottom: 36px; }
  .cta-banner { padding: 18px 6px; }
  .hero { padding: 18px 0 16px 0; }
}
