/* ==== 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;
  font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(135deg, #FFD369 0%, #FFFBEA 100%);
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #274554;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: #274554; text-decoration: none; transition: color 0.25s; }
a:hover, a:focus { color: #bfa633; text-decoration: underline; }
ul, ol { padding-left: 1.2em; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; line-height: 1.18; color: #274554; }
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section { max-width: 740px; }

/* ==== HEADER & NAV ==== */
header {
  width: 100%;
  background: linear-gradient(90deg, #274554 70%, #376377 100%);
  padding: 0 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(39,69,84, 0.06);
  min-height: 68px;
  display: flex;
  flex-direction: column;
}
.logo img {
  height: 48px;
  display: block;
}
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  height: 72px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 32px;
  flex: 1;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD369;
}
.btn-primary {
  background: linear-gradient(90deg, #FFD369 60%, #ffe78a 100%);
  color: #274554;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 32px;
  box-shadow: 0 2px 12px rgba(39,69,84,0.07);
  cursor: pointer;
  transition: background 0.3s, color 0.2s, transform 0.15s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FFC857 60%, #FFD369 100%);
  color: #16313e;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFD369;
  font-size: 2rem;
  margin-left: 24px;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus { outline: 2px solid #FFD369; }

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #274554 90%, #FFD369 100%);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.76,.05,.86,.06);
  z-index: 1001;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFD369;
  font-size: 2rem;
  margin-top: 28px;
  margin-bottom: 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus { outline: 2px solid #FFD369; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD369;
}

@media (max-width: 1100px) {
  .main-nav { gap: 12px; }
  .btn-primary { margin-left: 12px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 8px; margin-left: 4px; }
  header { padding: 0 8px; }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== HERO ==== */
.hero {
  width: 100%;
  background: linear-gradient(120deg, #FFD369 60%, #FFFBEA 100%);
  border-bottom: 1px solid #ffe699;
  padding: 56px 0 36px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.7rem;
  line-height: 1.13;
  color: #274554;
}
.hero p {
  color: #274554;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.hero .btn-primary {
  margin-left: 0;
}

/* ==== FEATURE GRID ==== */
.feature-grid,
.instruction-grid,
.recipe-grid,
.tip-grid,
.team-member-list,
.value-list,
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 12px;
  align-items: stretch;
}
.feature-grid li,
.instruction-grid li,
.recipe-grid li,
.tip-grid li,
.team-member-list li,
.value-list li,
.step-list li {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(39, 69, 84, 0.06);
  padding: 28px 24px 18px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 330px;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
  gap: 10px;
}
.feature-grid li:hover, .instruction-grid li:hover, .recipe-grid li:hover, .tip-grid li:hover {
  box-shadow: 0 8px 32px rgba(39,69,84,0.13);
  transform: translateY(-4px) scale(1.018);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-grid h3,
.instruction-grid h3,
.recipe-grid h3,
.tip-grid h3,
.team-member-list h3,
.step-list h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.value-list li {
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 100%;
  color: #274554;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/* ==== FILTERS & CATEGORIES ==== */
.filters, .blog-categories, .tip-categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  color: #274554;
  margin-bottom: 16px;
  margin-top: 6px;
}
.blog-categories span,
.tip-categories span {
  background: #fffbe7;
  color: #274554;
  border-radius: 16px;
  padding: 6px 15px;
  font-weight: 500;
  font-size: 0.99rem;
  margin-right: 7px;
}

/* ==== BLOG & NEWSLETTER ==== */
.blog-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.blog-teaser-grid article {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(39,69,84,0.06);
  flex: 1 1 290px;
  padding: 26px 24px 16px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.blog-teaser-grid article:hover {
  box-shadow: 0 8px 32px rgba(39,69,84,0.13);
  transform: translateY(-3px) scale(1.01);
}
.blog-teaser-grid article h3 {
  font-size: 1.20rem;
  color: #274554;
  margin-bottom: 7px;
}
.blog-teaser-grid article a {
  color: #FFD369;
  font-weight: bold;
  margin-top: 6px;
  transition: text-decoration .18s, color .18s;
}
.blog-teaser-grid article a:hover {
  text-decoration: underline;
  color: #bfa633;
}

.newsletter {
  background: #FBF5D7;
  border-radius: 18px;
  margin-bottom: 24px;
  padding: 40px 24px;
  text-align: center;
}
.newsletter h2 { font-size: 2rem; margin-bottom: 10px; }

/* ==== POPULAR/FEATURED ==== */
.popular-recipes, .featured-tips {
  background: #FFEEC5;
  border-radius: 15px;
  padding: 24px 20px;
  margin-top: 8px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(39,69,84,0.07);
}
.popular-recipes h3, .featured-tips h3 { font-size: 1.14rem; margin-bottom: 7px; }
.popular-recipes ul, .featured-tips ul {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 3px;
}

/* ==== FAQ ACCORDION ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(39,69,84,0.058);
  padding: 22px 24px 16px 24px;
  transition: box-shadow 0.2s;
  margin-bottom: 12px;
}
.faq-item h3 { font-size: 1.11rem; margin-bottom: 4px; }
.faq-item p { margin-bottom: 0; }

/* ==== TESTIMONIAL CARDS ==== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(39,69,84,0.10);
  margin-bottom: 20px;
  max-width: 600px;
  color: #1c3241;
  font-size: 1.14rem;
}
.testimonial-card blockquote {
  border-left: 4px solid #FFD369;
  font-style: italic;
  color: #243a4a;
  padding-left: 16px;
  margin-bottom: 2px;
}
.testimonial-card p { font-size: 1rem; color: #274554; margin-bottom: 0; }

/* ==== FOOTER ==== */
footer {
  background: linear-gradient(90deg, #274554 90%, #ffe083 100%);
  color: #fff;
  padding: 52px 0 24px 0;
  width: 100%;
}
.footer-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 20px;
}
.logo-footer img {
  height: 43px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #FFD369;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0;
}
.footer-copy {
  color: #ffefa7;
  font-size: 0.92rem;
  margin-top: 22px;
  flex-basis: 100%;
  text-align: left;
}

/* ==== LEGAL PAGES ==== */
.legal {
  background: #fffbe7;
  border-radius: 18px;
  margin-bottom: 32px;
  padding: 40px 24px;
}
.legal a { color: #274554; text-decoration: underline; }

/* ==== CALL-TO-ACTION ==== */
.call-to-action {
  background: linear-gradient(95deg, #FFD369 70%, #FFFBEA 100%);
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 0 52px 0;
}
.call-to-action .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.call-to-action h2 { font-size: 2rem; margin-bottom: 7px; }
.call-to-action p { font-size: 1.22rem; }

/* ==== THANK YOU ==== */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  padding: 40px 10px 72px 10px;
  max-width: 650px;
  margin: 0 auto;
  gap: 22px;
}
.thank-you h1 { margin-bottom: 18px; }

/* ==== CONTACT PAGE ==== */
.contact .content-wrapper {
  gap: 26px;
  max-width: 700px;
}
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-left: 4px;
  list-style: none;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #274554;
  font-size: 1.05rem;
}
.contact ul li img {
  width: 20px; height: 20px; margin-right: 4px;
}
.location-map .content-wrapper { max-width: 750px; }

/* ==== COOKIE CONSENT ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fffbe7 95%, #FFD369 100%);
  box-shadow: 0 -3px 16px rgba(39,69,84,0.09);
  z-index: 1200;
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.07rem;
  transition: transform 0.3s;
}
.cookie-consent-banner.hide {
  transform: translateY(150px);
}
.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  margin-left: 12px;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.18s, color 0.24s, transform 0.16s;
  outline: none;
}
.cookie-btn-accept {
  background: #FFD369;
  color: #274554;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #FFC857;
  color: #16313e;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn-reject {
  background: #274554;
  color: #FFD369;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #16313e;
  color: #FFD369;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn-settings {
  background: #fff;
  color: #274554;
  border: 1px solid #FFD369;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #fffbe7;
  color: #bfa633;
  border-color: #FFC857;
  transform: translateY(-2px) scale(1.03);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(39,69,84,0.18);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fffbe7;
  padding: 38px 30px 35px 30px;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(39,69,84,0.22);
  width: 90%; max-width: 430px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 1.5rem; color: #274554; cursor: pointer;
}
.cookie-modal h3 { font-size: 1.18rem; margin-bottom: 8px; }
.cookie-category {
  display: flex; align-items: center; flex-direction: row; gap: 12px;
  font-size: 0.97rem; margin-bottom: 8px;
}
.cookie-category span {
  font-weight: 600; color: #274554;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #FFD369;
  border-radius: 15px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.cookie-toggle[aria-checked="true"] {
  background: #274554;
}
.cookie-toggle-circle {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-circle {
  left: 19px;
}
.cookie-category[disabled] { opacity: 0.65; }

/* ==== SPACING/UTILITIES ==== */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section, .call-to-action, .legal, .newsletter { padding-left: 10px; padding-right: 10px; }
  .content-wrapper { padding-left: 0; padding-right: 0; }
  .footer-content {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .main-nav, .btn-primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .blog-teaser-grid { flex-direction: column; gap: 18px; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.08rem; }
  .feature-grid li, .instruction-grid li, .recipe-grid li, .tip-grid li, .blog-teaser-grid article {
    min-width: 160px; max-width: 100%; padding: 22px 10px 14px 10px;
  }
}
@media (max-width: 520px) {
  header { height: 62px; min-height: 62px; padding: 0 6px; }
  .logo img { height: 36px; }
  .hero { padding: 22px 0 14px 0; }
  .hero h1 { font-size: 1.3rem; }
  .call-to-action { padding: 22px 4px 40px 4px; }
}

/* ==== VISUAL EFFECTS & MICRO-INTERACTIONS ==== */
button, .btn-primary, .cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  transition: box-shadow 0.16s, background 0.22s, color 0.17s, transform 0.13s;
}
button:active, .btn-primary:active {
  transform: scale(0.97);
}

/* ==== Accessibility ==== */
:focus-visible { outline: 2px solid #FFD369; outline-offset: 2px; }

/* ==== FLEXBOX ALIGNMENT - UX Patterns (see prompt) ==== */
.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; }

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-grid { flex-direction: column; gap: 16px; }
  .feature-item { gap: 12px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .hero .content-wrapper { align-items: flex-start; }
}

/* ==== END OF FILE ==== */
