/* RESET & BASE */
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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #1d2833;
  color: #ebeff2;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(135deg, #223344 0%, #244b5a 80%, #1f2632 100%);
  transition: background 0.7s cubic-bezier(.77,0,.18,1);
}

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

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #f3b95b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #e1eaff;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }

p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #ebeff2;
  margin-bottom: 16px;
  font-size: 1rem;
}
strong, b {
  color: #f3b95b;
  font-weight: 700;
}

/* BRAND COLORS */
:root {
  --color-primary: #244b5a;
  --color-primary-dark: #203946;
  --color-secondary: #f3b95b;
  --color-accent: #ebeff2;
  --color-dark: #1d2833;
  --color-mid: #2c3b4a;
  --color-neon: #00ffe7;
  --color-error: #f65757;
  --color-success: #3ee98b;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

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

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

/* NAVIGATION */
header {
  background: rgba(30,40,51,0.95);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 2px 16px 0 rgba(0,32,48,0.11);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  color: #ebeff2;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: #223344;
}
.nav-wrapper > a img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 24px 0 rgba(0,255,231,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.28s, border 0.21s;
  margin-left: 10px;
  margin-right: 0;
  display: inline-block;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(90deg, #1ad0b9 0%, #244b5a 95%);
  color: #fff;
  border: 2px solid var(--color-neon);
  text-shadow: 0 0 4px #00ffe7;
  box-shadow: 0 0 12px 0 rgba(0,255,231,0.11);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #244b5a 10%, #1ad0b9 100%);
  color: #00ffe7;
  box-shadow: 0 0 18px 0 #00ffe7;
}
.btn-secondary {
  background: #f3b95b;
  color: #244b5a;
  border: 2px solid #f3b95b;
  box-shadow: 0 6px 28px 0 rgba(243,185,91,0.12);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff8ef;
  color: #244b5a;
  border-color: #244b5a;
}

.mobile-menu-toggle {
  background: none;
  color: var(--color-secondary);
  font-size: 2.2rem;
  border: none;
  margin-left: 8px;
  padding: 2px 10px 0 10px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  transition: background 0.18s, color 0.24s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(36,75,90,0.17);
  color: #fff;
}

/* MOBILE MENU (Hidden by default) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(30,40,51,0.97);
  transform: translateX(-110vw);
  z-index: 200;
  transition: transform 0.38s cubic-bezier(.65,.05,.47,1.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-neon);
  font-size: 2.4rem;
  border: none;
  margin: 22px 0 0 22px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s;
  z-index: 202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #f3b95b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 38px 0 0 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 24px 10px 10px;
  border-radius: 7px;
  margin-bottom: 4px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}


/* HERO SECTIONS */
.hero-section {
  padding: 70px 0 60px 0;
  width: 100%;
  background: linear-gradient(100deg, #244b5a 30%, #1ad0b9 100%);
  box-shadow: 0 8px 32px 0 rgba(36,75,90,0.14);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.55rem;
  font-weight: 800;
  text-shadow: 0 3px 28px #1ad0b9, 0 1px 2px #244b5a;
}
.hero-section .subheadline {
  font-size: 1.2rem;
  color: #f3ffd6;
  margin-bottom: 18px;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 32px;
}
.feature-grid li {
  background: #223344;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(0,255,231,0.05);
  padding: 32px 30px 24px 30px;
  min-width: 240px;
  flex: 1 1 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 8px;
}

/* SERVICE LISTS */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 24px;
  list-style: none;
}
.service-list li {
  background: #203946;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(36,75,90,0.08);
  padding: 25px 25px 22px 25px;
  min-width: 240px;
  flex: 1 1 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-list-detailed > div {
  background: #223344;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(36,75,90,0.10);
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.service-price {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.1rem;
  color: #00ffe7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: rgba(0,255,231,0.10);
  border-radius: 8px;
  padding: 4px 12px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #19222b;
  border-radius: 18px;
  overflow: hidden;
  margin: 18px 0;
  font-size: 1rem;
}
.pricing-table caption {
  color: #fff;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
  text-align: left;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  color: #ebeff2;
}
.pricing-table th {
  background: #223344;
  font-weight: bold;
}
.pricing-table tr:nth-child(even) td {
  background: #212a35;
}
.pricing-table tr:nth-child(odd) td {
  background: #18212b;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(100deg, #1ad0b9 18%, #244b5a 93%);
  padding: 48px 0;
  width: 100%;
  box-shadow: 0 4px 30px 0 rgba(36,75,90,0.13);
}
.cta-section .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 700px;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
}

/* TESTIMONIALS */
.testimonial-section {
  background: #e5f7ff;
  padding: 48px 0;
}
.testimonial-section .content-wrapper > h2 {
  color: #244b5a;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(60,255,255,0.06), 0 1.5px 7px 0 rgba(44,59,74,0.09);
  margin-bottom: 24px;
  color: #223344;
}
.testimonial-card p {
  color: #244b5a;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card strong {
  color: #1ad0b9;
  margin-left: 10px;
  font-size: 1.04rem;
}
.rating-summary {
  background: none;
  font-size: 1.1rem;
  color: #13b39b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 10px;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}
.rating-summary span {
  background: #fff;
  color: #244b5a;
  padding: 6px 12px 5px 12px;
  border-radius: 9px;
  font-weight: 600;
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background: #244b5a;
  padding: 50px 0;
}
.newsletter-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 680px;
  color: #fff;
}
.newsletter-section h2 {
  color: #f3b95b;
  font-size: 2.2rem;
}
.newsletter-section p {
  color: #ebeff2;
}

/* CATEGORY GRID, RECIPE, POST, COURSE LISTS */
.category-grid, .recipe-list, .post-list, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  margin-top: 10px;
  list-style: none;
}
.category-grid > div {
  background: #223344;
  border-radius: 12px;
  padding: 18px 24px 12px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,255,231,0.06);
  transition: box-shadow 0.2s, background 0.18s;
}
.category-grid > div:hover {
  box-shadow: 0 4px 18px 0 #00ffe729;
  background: #2e536a;
}
.category-grid img {
  height: 36px;
  width: 36px;
}
.category-grid span {
  color: #f3b95b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
}
.filter-options, .category-filter {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 14px 0 10px 0;
}
.filter-options span, .category-filter span {
  color: #00ffe7;
  font-weight: 600;
}
.filter-options button, .category-filter button {
  background: #223344;
  color: #fff;
  border-radius: 16px;
  border: none;
  padding: 7px 18px 7px 18px;
  font-size: .98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.14s, box-shadow 0.18s;
}
.filter-options button:hover, .category-filter button:hover {
  background: #f3b95b;
  color: #223344;
  box-shadow: 0 0 6px 0 #f3b95b55;
}

.recipe-list li, .course-list li, .post-list li {
  background: #13222f;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(0,255,231,0.03);
  padding: 24px 22px 17px 22px;
  flex: 1 1 240px;
  min-width: 225px;
  max-width: 360px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-label {
  background: #1ad0b9;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .93rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 2px 12px 3px 12px;
  margin-bottom: 5px;
  display: inline-block;
}
/* POST-LIST specific */
.post-list li h3 {
  color: #f3b95b;
  font-size: 1.2rem;
}

/* VALUE LISTS */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 28px;
}
.value-list li {
  background: #223344AA;
  border-radius: 13px;
  padding: 12px 18px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}
.faq-accordion > div {
  background: #244b5a;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 13px 0 rgba(0,255,231,0.04);
  color: #ebeff2;
}
.faq-accordion h3 {
  color: #f3b95b;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.faq-accordion p {
  color: #ebeff2;
  margin-bottom: 1px;
}

/* CONTACT PAGE address-map, contact-info, business-hours */
.address-map {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.address-map img {
  min-width: 28px;
  height: 36px;
}
.business-hours, .contact-info {
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  margin-top: 80px;
  background: #18222b;
  padding: 44px 0 36px;
  color: #ebeff2;
  box-shadow: 0 -2px 18px 0 rgba(30,40,51,0.10);
  border-top: 1.5px solid #13222f;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
}
.footer-navigation, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-right: 24px;
}
.footer-navigation a {
  color: #f3b95b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .99rem;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color 0.14s;
}
.footer-navigation a:hover {
  color: #00ffe7;
}
.footer-social {
  flex-direction: row;
  gap: 18px;
  margin-top: 9px;
}
.footer-social img {
  height: 28px;
  filter: drop-shadow(0 0 3px #00ffe7aa);
  transition: filter 0.18s;
}
.footer-social img:hover { filter: brightness(1.22) drop-shadow(0 0 7px #1ad0b9cc); }

/* CONFIRMATION (Thank-You) SECTION */
.confirmation {
  background: #e5f7ff;
  border-radius: 20px;
  box-shadow: 0 0 24px 0 #1ad0b93b;
  padding: 36px 26px 32px 30px;
  color: #223344;
}
.confirmation h1 {
  color: #244b5a;
}
.success-message {
  background: #3ee98b25;
  color: #224c36;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.07rem;
  margin-bottom: 1px;
}
.next-steps p {
  color: #244b5a;
  margin-bottom: 10px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #223344;
  color: #ebeff2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 18px 18px 18px;
  font-size: 1rem;
  box-shadow: 0 -2px 28px 0 rgba(36,75,90,0.13);
  z-index: 300;
  animation: slideUpIn 0.53s cubic-bezier(.48, .71, .44, 1.5);
}
@keyframes slideUpIn {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0 !important;
  color: #ebeff2;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #f3b95b;
  color: #244b5a;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  margin-top: 3px;
  margin-bottom: 3px;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ebeff2;
  color: #244b5a;
}
.cookie-banner .cookie-settings-btn {
  background: #223344;
  color: #f3b95b;
  border: 2px solid #f3b95b;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #f3b95b;
  color: #223344;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 410px;
  background: #fff;
  color: #223344;
  transform: translate(-50%,-50%) scale(1.05);
  border-radius: 16px;
  box-shadow: 0 12px 60px 0 #1ad0b919, 0 2px 24px 0 #244b5a35;
  z-index: 350;
  padding: 36px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeIn 0.48s cubic-bezier(.55,.4,.19,1.04);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%,-42%) scale(.98); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1.05); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #244b5a;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 22px;
  background: #ebeff2;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1.2px solid #244b5a;
  transition: border 0.18s, background 0.18s;
}
.cookie-modal .cookie-toggle:checked {
  background: #1ad0b9;
  border-color: #1ad0b9;
}
.cookie-modal .cookie-toggle::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1.5px 4px 0 #244b5a33;
  transition: left 0.16s, background 0.18s;
}
.cookie-modal .cookie-toggle:checked::before {
  left: 17px;
  background: #00ffe7;
}
.cookie-modal .category-label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #244b5a;
  font-weight: bold;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: #244b5a;
  color: #fff;
  transition: background 0.19s, color 0.13s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #1ad0b9;
  color: #244b5a;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  background: none;
  color: #244b5a;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .modal-close:hover { color: #f3b95b; }

.overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(15,30,36,0.45);
  z-index: 340;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 920px; }
  .feature-grid, .service-list, .recipe-list, .course-list, .category-grid, .service-list-detailed, .post-list {
    gap: 18px;
  }
  .footer-social img { height: 24px; }
}
@media (max-width: 870px) {
  .container { max-width: 98vw; }
  .feature-grid, .service-list, .recipe-list, .course-list, .category-grid, .service-list-detailed, .post-list {
    gap: 14px;
  }
  .footer-contact { flex: 1 0 100%; }
  footer .container { gap: 16px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding-left: 8px; padding-right: 8px; }
  .nav-wrapper > nav { display: none; }
  .btn-primary, .btn-secondary {
    padding: 11px 18px;
    font-size: .99rem;
    margin-left: 4px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero-section {
    padding: 40px 0 34px 0;
  }
  .hero-section h1 {
    font-size: 2.1rem;
  }
  .feature-grid, .service-list, .service-list-detailed, .recipe-list, .post-list, .course-list {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .category-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 14px;
  }
  .newsletter-section, .cta-section, .testimonial-section {
    padding-left: 10px; padding-right: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.18rem; }
  .footer-navigation, .footer-contact { font-size: 0.97rem; }
  .feature-grid li, .service-list li, .service-list-detailed > div {
    padding: 18px 10px 15px 13px;
  }
  .hero-section .content-wrapper, .cta-section .content-wrapper, .newsletter-section .content-wrapper {
    padding-left: 1px;
    padding-right: 1px;
    max-width: 98vw;
  }
}

/* ========== SPACING & FLEXBOX HELPERS FOR CONSISTENCY ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #223344;
  box-shadow: 0 2px 12px 0 #00ffe714;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== FORMS ========== */
input[type="search"] {
  width: 100%;
  max-width: 340px;
  border: none;
  border-radius: 18px;
  background: #ebeff2;
  padding: 14px 20px;
  font-size: 1.04rem;
  color: #223344;
  margin-bottom: 0;
  margin-top: 12px;
  box-shadow: 0 1.5px 8px 0 #244b5a19;
  outline: none;
  transition: box-shadow 0.21s;
}
input[type="search"]:focus {
  box-shadow: 0 4px 14px 0 #1ad0b921;
  background: #fff;
}

/* ========== MICRO-INTERACTIONS ========== */
.btn-primary, .btn-secondary, .filter-options button, .category-filter button, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close, .footer-navigation a, .cookie-banner button, .cookie-modal button {
  transition: background 0.13s, color 0.14s, box-shadow 0.17s, border 0.13s;
}
.feature-grid li, .service-list li, .service-list-detailed > div, .card, .recipe-list li, .course-list li, .post-list li {
  transition: box-shadow 0.13s, background 0.17s, transform 0.14s;
}
.feature-grid li:hover, .service-list li:hover, .service-list-detailed > div:hover, .card:hover, .recipe-list li:hover, .course-list li:hover, .post-list li:hover {
  transform: translateY(-3px) scale(1.016);
  box-shadow: 0 8px 32px 0 rgba(0,255,231,0.14);
  background: #2e536a;
}
