/* ==== CSS 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,
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, 
main, 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 {
  font-family: 'Merriweather', 'Georgia', serif;
  background: #F6F6F6;
  color: #22313A;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.666;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1px;
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 0.97rem; }
}

/* ==== FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&display=swap');

/* ==== TYPOGRAPHY ====*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  color: #22313A;
  letter-spacing: -1px;
}
h1 { font-size: 2.75rem; margin-bottom: 28px; } /* 44px */
h2 { font-size: 2rem; margin-bottom: 20px; }      /* 32px */
h3 { font-size: 1.375rem; margin-bottom: 12px; }          /* 22px */
h4 { font-size: 1.125rem; margin-bottom: 10px; }  /* 18px */
h5, h6 { font-size: 1rem; margin-bottom: 8px; }

.subheadline {
  font-family: 'Source Sans Pro', 'Merriweather', 'Georgia', serif;
  font-size: 1.25rem;
  color: #077f6e;
  margin-bottom: 30px;
  font-weight: 400;
}

p, li, label, input, textarea, select, address {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #22313A;
  font-size: 1.06rem;
  margin-bottom: 16px;
}

strong { font-weight: 700; }

ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
  list-style-type: disc;
}
ul ul, ol ol {
  margin-bottom: 8px;
}
li {
  margin-bottom: 8px;
}

address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 18px;
}

a {
  color: #077f6e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22313A;
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 40px 0;
}

/* ==== LAYOUT HELPERS ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px;
}

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

@media (max-width: 900px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .section {
    padding: 30px 8px;
  }
}

/* ==== HEADER ==== */
header {
  background: #fff;
  border-bottom: 1.5px solid #E4EBE7;
  box-shadow: 0 2px 12px rgba(34, 49, 58, 0.04);
  padding: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 18px;
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.05rem;
  color: #22313A;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E4EBE7;
  color: #077f6e;
}
.main-nav .cta-primary {
  background: #077f6e;
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 1px 8px rgba(7,127,110,0.12);
  padding: 9px 22px;
  transition: background 0.18s, box-shadow 0.18s;
  margin-left: 8px;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #22313A;
  color: #fff;
  box-shadow: 0 2px 12px rgba(7,127,110,0.12);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #077f6e;
  cursor: pointer;
  margin-left: 6px;
  padding: 4px 10px;
  transition: color 0.15s;
  z-index: 1301;
}
.mobile-menu-toggle:focus{
  outline: 2px solid #22313A;
}

/* ==== MOBILE NAV ==== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(250,250,250, 0.98);
  box-shadow: -2px 0 40px rgba(34,49,58,0.18);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.56,.13,.48,.97);
  width: 100vw;
  height: 100vh;
  padding: 36px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -2px 0 36px rgba(34,49,58,0.18);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #22313A;
  cursor: pointer;
  z-index: 1001;
  padding: 4px 12px;
  line-height: 1;
  transition: color 0.15s;
}
.mobile-menu-close:focus {
  outline: 2px solid #077f6e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 30px;
  gap: 20px;
  margin-top: 46px;
}
.mobile-nav a {
  display: block;
  font-size: 1.25rem;
  font-family: 'Merriweather', 'Georgia', serif;
  padding: 14px 0;
  color: #22313A;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #077f6e;
  background: #F6F6F6;
}

@media(max-width:1024px){
  .main-nav {
    gap:12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ==== HERO SECTIONS ==== */
.hero {
  background: #F6F6F6;
  padding: 65px 0 50px 0;
  border-bottom: 1px solid #e4ebe7;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: #077f6e;
  margin-bottom: 10px;
}
.hero .subheadline {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero {
    padding:42px 0 28px 0;
  }
  .hero .content-wrapper {
    gap: 8px;
  }
}

/* ==== FEATURES ==== */
.features .content-wrapper > h2 {
  text-align: center;
  margin-bottom: 32px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(34,49,58,0.07);
  padding: 32px 24px;
  flex: 1 1 215px;
  max-width: 325px;
  min-width: 225px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
}
.feature h3 {
  margin-bottom: 7px;
  color: #077f6e;
  font-size: 1.16rem;
}
.feature p {
  color: #22313A;
  margin-bottom: 0;
  font-size: 1rem;
}
.feature:hover, .feature:focus-within {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 6px 28px rgba(7,127,110,.10);
}

@media (max-width: 1020px) {
  .feature-grid {
    gap: 16px;
  }
  .feature {
    max-width: 99%;
    min-width: 170px;
    padding: 22px 14px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .feature {
    max-width: 100%;
    width: 100%;
  }
}

/* ==== FLEX LAYOUT UTILS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 12px rgba(34,49,58,0.054);
  padding: 26px 20px;
  transition: box-shadow .18s, transform .12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 24px rgba(7,127,110,0.14);
  transform: translateY(-2px);
}
.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;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px rgba(34,49,58,0.05);
  border: 1px solid #e4ebe7;
  transition: box-shadow .18s, border .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 32px rgba(7,127,110,0.16);
  border: 1.5px solid #077f6e;
}
.testimonial-card p {
  margin: 0 0 4px 0;
  color: #22313A;
  font-style: italic;
  font-size: 1.13rem;
}
.testimonial-card span {
  color: #077f6e;
  font-family: 'Source Sans Pro', 'Merriweather', serif;
  font-size: 1.09rem;
  margin-left: 14px;
}

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

@media (max-width: 768px) {
  .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ==== RECIPE CARDS ==== */
.recipe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.recipe-card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(34,49,58,.08);
  border-radius: 14px;
  flex: 1 1 264px;
  min-width: 235px;
  max-width: 325px;
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow .14s, transform .10s;
  border: 1px solid #E4EBE7;
}
.recipe-card:hover, .recipe-card:focus-within {
  transform: translateY(-2px) scale(1.017);
  box-shadow: 0 8px 28px rgba(7,127,110,0.12);
  border: 1.3px solid #077f6e;
}
.recipe-card h3 {
  color: #077f6e;
  font-size: 1.19rem;
  margin-bottom: 10px;
}

.button-secondary {
  background: transparent;
  color: #077f6e;
  font-family: 'Montserrat', 'Merriweather', serif;
  border: 1.5px solid #077f6e;
  border-radius: 8px;
  padding: 7px 18px;
  font-weight: 700;
  margin-top: 12px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, border 0.16s;
  cursor: pointer;
  text-align: left;
}
.button-secondary:hover, .button-secondary:focus {
  background: #077f6e;
  color: #fff;
  border: 1.5px solid #077f6e;
}

@media (max-width: 1100px) {
  .recipe-list {
    gap: 14px;
  }
  .recipe-card {
    max-width: 99%;
    min-width: 170px;
  }
}
@media (max-width: 700px) {
  .recipe-list {
    flex-direction: column;
    gap: 16px;
  }
  .recipe-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ==== FAQ SECTIONS ==== */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.faq-item {
  flex: 1 1 210px;
  min-width: 215px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(34,49,58,0.07);
  padding: 22px 18px;
  border: 1px solid #E4EBE7;
  margin-bottom: 20px;
  transition: box-shadow .14s, border .10s;
}
.faq-item h3 {
  font-size: 1.11rem;
  color: #077f6e;
  margin-bottom: 7px;
}
.faq-item p {
  font-size: 1.01rem;
  margin-bottom: 0;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 8px 24px rgba(7,127,110,0.10);
  border: 1.5px solid #077f6e;
}
@media (max-width: 900px) {
  .faq-list {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    max-width: 100%;
    min-width: 160px;
  }
}

/* ==== CTA BANNER ==== */
.cta-banner {
  padding: 44px 0 44px 0;
  margin-bottom: 32px;
  background: #fff;
  box-shadow: 0 2px 19px rgba(34,49,58,0.05);
  border-radius: 18px;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.cta-banner h2 {
  text-align: center;
  margin-bottom: 12px;
  color: #077f6e;
}
.cta-banner a:not(.cta-primary) {
  margin-top: 15px;
  font-weight: 600;
  color: #22313A;
  text-decoration: underline;
  font-size: 1.1rem;
}

/* ==== BUTTONS & CTAS ==== */
.cta-primary, button[type='submit'], .footer-newsletter button {
  background: #077f6e;
  color: #fff !important;
  font-family: 'Montserrat', 'Merriweather', serif;
  font-weight: 700;
  border: none;
  border-radius: 11px;
  padding: 12px 36px;
  font-size: 1.11rem;
  box-shadow: 0 2px 12px rgba(7,127,110,0.15);
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.16s, box-shadow 0.16s, color 0.14s;
}
.cta-primary:hover, .cta-primary:focus,
button[type='submit']:hover, button[type='submit']:focus,
.footer-newsletter button:hover, .footer-newsletter button:focus {
  background: #22313A;
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,49,58,0.13);
}

button, input[type='button'], input[type='submit'], .button-secondary {
  font-family: 'Montserrat', 'Merriweather', serif;
  border-radius: 10px;
  border: none;
  outline: none;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}

button:disabled, input:disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* ==== FORM ELEMENTS ==== */
input[type="text"], input[type="email"], input[type="password"], textarea {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1rem;
  width: 100%;
  background: #F6F6F6;
  border: 1.5px solid #E4EBE7;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  color: #22313A;
  transition: border 0.13s, background 0.11s;
  box-shadow: 0 1px 5px rgba(34,49,58,0.04);
}
input:focus, textarea:focus {
  border: 1.7px solid #077f6e;
  background: #fff;
}
label {
  color: #22313A;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-family: 'Montserrat', 'Merriweather', serif;
}
textarea {
  resize: vertical;
  min-height: 90px;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 2px solid #E4EBE7;
  margin-top: 65px;
  font-size: 1.05rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 45px 0 30px 0;
}
.footer-content > * {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-direction: column;
}
.footer-nav a {
  color: #077f6e;
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Merriweather', serif;
  margin-bottom: 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #22313A;
}
.footer-contact, .footer-newsletter {
  font-size: 1rem;
  font-family: 'Merriweather', 'Georgia', serif;
}
.footer-contact a { color: #077f6e; }
.footer-contact a:hover, .footer-contact a:focus { color: #22313A; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: inline-block;
  border-radius: 50%;
  background: #F6F6F6;
  width: 40px; height: 40px;
  display: flex;align-items: center;justify-content: center;
  border: 1px solid #E4EBE7;
  transition: background 0.13s, border .14s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #077f6e;
  border: 1.5px solid #077f6e;
}
.footer-social img {
  width: 22px; height: 22px;
  display: block;
}
.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 230px;
}
.footer-newsletter input[type="email"] {
  width: 100%;
  background: #F6F6F6;
  color: #22313A;
  border: 1.2px solid #E4EBE7;
  border-radius: 7px;
  margin-bottom: 9px;
  padding: 9px 14px;
}
.footer-newsletter button {
  background: #077f6e;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  font-family: 'Montserrat', 'Merriweather', serif;
  box-shadow: 0 2px 9px rgba(7,127,110,0.12);
  transition: background 0.15s, color .11s;
}
.footer-newsletter button:hover, .footer-newsletter button:focus {
  background: #22313A;
  color: #fff;
}

@media (max-width: 900px) {
  .footer-content {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==== SPECIAL SECTIONS: TRUSTED BY ==== */
.trusted-by {
  margin-top: 32px;
}
.trusted-by h3 {
  font-size: 1rem;
  color: #22313A;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Merriweather', serif;
}
.trusted-by ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
}
.trusted-by li {
  font-family: 'Merriweather', serif;
  color: #22313A;
  font-style: italic;
}

/* ==== WORKSHOP LIST ==== */
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.workshop-entry {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(34,49,58,0.06);
  padding: 22px 18px;
  flex: 1 1 300px;
  min-width: 225px;
  max-width: 355px;
  font-size: 1.09rem;
  margin-bottom: 12px;
  border: 1px solid #E4EBE7;
  transition: border .13s, box-shadow .13s;
}
.workshop-entry:hover, .workshop-entry:focus-within {
  border: 1.5px solid #077f6e;
  box-shadow: 0 8px 24px rgba(7,127,110,0.09);
}
@media (max-width: 900px) {
  .workshop-list {
    gap: 10px;
  }
  .workshop-entry {
    max-width: 99%;
    min-width: 180px;
  }
}
@media (max-width: 700px) {
  .workshop-list {
    flex-direction: column;
    gap: 14px;
  }
  .workshop-entry {
    width: 100%;
    max-width: 100%;
  }
}

/* ==== PROCESS/PROZESS ====*/
.prozess {
  margin-top: 19px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(34,49,58,0.07);
  padding: 20px 18px;
  border: 1px solid #E4EBE7;
}
.prozess h3 {
  color: #077f6e;
  font-size: 1.10rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', 'Merriweather', serif;
}
.prozess ol {
  margin-bottom: 0;
  padding-left: 20px;
}
.prozess li { margin-bottom: 8px; }

/* ==== TEXT SECTION ==== */
.text-section {
  margin-bottom: 40px;
}

/* ==== CARD ====*/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==== CARD GRID (additional utility) ====*/
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 900px) {
  .card-grid {
    flex-direction: column;
  }
}

/* ==== TABLES ==== */
table {
  border-collapse: collapse;
  background: #fff;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}
th, td {
  padding: 12px 18px;
  border-bottom: 1.5px solid #E4EBE7;
  font-size: 1rem;
}
th {
  background: #F6F6F6;
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #fff;
  color: #22313A;
  box-shadow: 0 -3px 30px rgba(34,49,58,0.13);
  border-top: 2px solid #E4EBE7;
  padding: 22px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.28s cubic-bezier(.77,.12,.44,1.02);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  max-width: 680px;
  font-size: 1rem;
  color: #22313A;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Merriweather', serif;
  background: #077f6e;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(7,127,110,0.10);
  margin: 0;
  cursor: pointer;
  transition: background 0.13s, color .13s;
}
.cookie-banner .reject {
  background: #fff;
  color: #22313A;
  border: 1.5px solid #077f6e;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F6F6F6;
}
.cookie-banner .settings {
  background: #22313A;
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #077f6e;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 14px 6px 12px 6px;
    gap: 10px;
  }
  .cookie-banner p {
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: rgba(34,49,58,0.49);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  opacity: 0;
  transition: opacity .25s cubic-bezier(.66,.11,.53,1.09);
  visibility: hidden;
}
.cookie-modal.visible {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 17px;
  padding: 48px 32px 32px 32px;
  max-width: 430px;
  width: 92vw;
  box-shadow: 0 8px 46px rgba(7,127,110,0.14);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.21rem;
  color: #077f6e;
  margin-bottom: 12px;
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #22313A;
  cursor: pointer;
}
.cookie-modal-content .categories {
  margin: 0 0 12px 0;
}
.cookie-modal-content .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #E4EBE7;
  font-size: 1rem;
}
.cookie-modal-content .category:last-child { border-bottom: none; }
.cookie-modal-content .toggle {
  display: flex;
  align-items: center;
}
.cookie-modal-content input[type='checkbox'] {
  accent-color: #077f6e;
  width: 20px;
  height: 20px;
}
.category .always-on {
  color: #077f6e;
  font-weight: 700;
  font-size: 0.97rem;
  margin-left:8px;
}
.cookie-modal-content .modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-modal-content button {
  font-family: 'Montserrat', 'Merriweather', serif;
  background: #077f6e;
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(7,127,110,0.10);
  margin: 0;
  cursor: pointer;
  transition: background 0.13s, color .13s;
}
.cookie-modal-content button:last-child {
  background: #22313A;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  opacity: 0.85;
}

@media(max-width:550px){
  .cookie-modal-content { padding: 30px 5px 24px 5px; }
  .cookie-modal-content h3 { font-size:1.09rem; }
}

/* ==== MISC ==== */
::-webkit-input-placeholder { color: #9bb0b4; }
::-moz-placeholder { color: #9bb0b4; }
:-ms-input-placeholder { color: #9bb0b4; }
::placeholder { color: #9bb0b4; }

img { max-width:100%; height:auto; border:0; }

/* Utility Spacing */
.mt-0 { margin-top: 0 !important; }
.mt-12 { margin-top: 12px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* Animations */
@keyframes fadeUpIn {
  from { opacity:0; transform: translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
.hero, .features, .testimonials, .pricing, .faq, .about, .cta-banner, .contact-info, .contact-form-section {
  animation: fadeUpIn .6s cubic-bezier(.57,.18,.35,.97) 0.13s 1 both;
}

/* ==== PRINT ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display:none !important; }
  .container, .content-wrapper { max-width:100% !important; }
}
