/* =====================
   CSS RESET & BASELINE
   ===================== */
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, 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 {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F3F4F6;
  color: #21314A;
  line-height: 1.5;
  font-size: 16px;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #21314A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #67B07A;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ======= BRAND FONTS ======= */
h1, h2, h3, h4, h5, h6, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.25;
}
h4, h5, h6 {
  margin-bottom: 12px;
}

/* Typography scaling */
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 16px;
}
.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #67B07A;
  letter-spacing: 0.03em;
}

strong, b {
  font-weight: 700;
}

/* ============= COLORS ============= */
:root {
  --primary: #21314A;
  --secondary: #67B07A;
  --accent: #F3F4F6;
  --white: #fff;
  --black: #10131A;
  --success: #17D985;
  --danger: #E74C3C;
  --gray: #828EA0;
  --focus: #FFC857;
}

/* ===================
   LAYOUT CONTAINERS
   =================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(33, 49, 74, 0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 32px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* MAIN HERO AREA */
.hero {
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
  box-shadow: 0 12px 36px rgba(33,49,74,0.15);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 40px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1,
.hero .hero-subheadline,
.hero p {
  color: var(--white);
}
.hero a.cta-primary {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 40px 0 28px 0;
    border-radius: 0 0 18px 18px;
  }
}

/* =================
   HEADER/Navbar
   ================= */
header {
  background: var(--white);
  border-bottom: 2px solid var(--accent);
  padding: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 75px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
.logo,
header img[alt*="Blyssy Hammer"] {
  height: 42px;
  width: auto;
}

.cta-primary {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(103,176,122,0.10);
  transition: background 0.18s, transform 0.19s, box-shadow 0.19s;
  border: none;
  display: inline-block;
  margin-left: 4px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(33,49,74,0.12);
}

.cta-secondary {
  background: transparent;
  color: var(--secondary) !important;
  border: 2px solid var(--secondary);
  border-radius: 34px;
  padding: 11px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.18s, background 0.19s, border-color 0.17s;
  margin-top: 6px;
  display: inline-block;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--secondary);
  color: #fff !important;
  border-color: var(--primary);
}

/* Burger menu - mobile */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2rem;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: 18px;
  padding: 6px 12px 4px 12px;
  border-radius: 8px;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
  background: var(--accent);
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,49,74,0.96);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.7,0,.22,1);
  will-change: transform;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--white);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 16px;
  transition: color 0.12s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.3rem;
  padding: 10px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========================
   MAIN FEATURE & LISTS
   ======================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.feature {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(33,49,74,0.10);
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.19s;
  min-height: 240px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 32px rgba(33,49,74,0.16);
  transform: translateY(-2px) scale(1.03);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.feature h3 {
  color: var(--secondary);
  font-size: 1.15rem;
  font-weight: 700;
}
.feature p {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    max-width: 100%;
    min-width: 0;
  }
}

/* --- Wissenswertes List --- */
.wissen-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 4px;
}
.wissen-item {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(33,49,74,0.13);
  padding: 24px 18px 18px 18px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.13s, transform 0.17s;
}
.wissen-item:hover, .wissen-item:focus-within {
  box-shadow: 0 8px 28px rgba(103,176,122,0.12);
  transform: scale(1.025);
}
@media (max-width: 1024px) {
  .wissen-list {
    flex-direction: column;
    gap: 16px;
  }
  .wissen-item {
    max-width: 100%;
    min-width: 0;
  }
}

.experten-tipps {
  background: #67B07A;
  color: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  margin: 16px 0 0 0;
}
.experten-tipps h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.experten-tipps ul li {
  font-size: 1rem;
  margin-left: 18px;
  list-style: disc;
  margin-bottom: 8px;
}

/* =====================
   SERVICES PAGE CARDS
   ===================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-item {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(33,49,74,0.10);
  padding: 26px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-item img {
  width: 42px;
  height: 42px;
}
.service-item h3 {
  font-size: 1.1rem;
  color: var(--secondary);
}
.service-item a.cta-secondary {
  margin-top: 12px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 24px rgba(33,49,74,0.13);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 1024px) {
  .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-item {
    max-width: 100%;
    min-width: 0;
  }
}

/* Price Table Styles */
.price-table {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(33,49,74,0.10);
  border-collapse: collapse;
  margin: 16px 0 20px 0;
  overflow: hidden;
  font-size: 1rem;
}
.price-table th, .price-table td {
  padding: 18px 14px;
  text-align: left;
  border-bottom: 1px solid var(--accent);
}
.price-table th {
  background: var(--secondary);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table td {
  color: var(--primary);
}
@media (max-width: 768px) {
  .price-table th,
  .price-table td {
    padding: 10px 5px;
    font-size: 0.98rem;
  }
}

/* =======================
   TESTIMONIAL CARDS
   ======================= */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(33,49,74,0.11);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  position: relative;
  transition: box-shadow 0.12s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px rgba(103,176,122,0.15);
  transform: scale(1.03);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.testimonial-average {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 700;
  background: var(--accent);
  border-radius: 16px;
  padding: 12px 20px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .testimonials-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .testimonial-average {
    min-width: 0;
    max-width: 100%;
  }
}

/* ========= CTA SECTION ========= */
.cta {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 8px 36px rgba(103,176,122,0.11);
  margin-bottom: 60px;
  padding: 38px 10px 38px 10px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta a.cta-primary {
  background: #fff;
  color: var(--secondary) !important;
  border: 2px solid #fff;
  transition: background 0.16s, color 0.18s, border-color 0.15s;
  margin-top: 14px;
}
.cta a.cta-primary:hover, .cta a.cta-primary:focus {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}
@media (max-width: 768px) {
  .cta {
    margin-bottom: 32px;
    border-radius: 18px;
  }
}

/* =================================
   FAQ SECTION & SIMPLE BLOCK LISTS
   ================================= */
.faq-list, .feature-item, .content-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.faq-list li, .feature-item li {
  font-size: 1rem;
  background: var(--accent);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(33,49,74,0.04);
}
.faq-list strong {
  color: var(--secondary);
}

ul, ol {
  margin-left: 16px;
  padding-left: 0;
}
.section ul li, .section ol li {
  margin-bottom: 10px;
}

/* =================================
   CONTACT INFO & MAP PLACEHOLDER
   ================================= */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.address-block, .email-block, .hours-block, .phone-block {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px 13px 18px;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(103,176,122,0.10);
  font-size: 1.07rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.map-placeholder {
  margin-top: 22px;
  padding: 18px 12px 16px 12px;
  background: var(--accent);
  border-radius: 10px;
  font-style: italic;
  color: var(--gray);
}
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}

/* ================== FOOTER =================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 20px 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -3px 16px rgba(33,49,74,0.10);
  margin-top: 40px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 46px;
}
.footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu-links a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.86;
  transition: opacity 0.13s, color 0.13s;
}
.footer-menu-links a:hover, .footer-menu-links a:focus {
  color: var(--secondary);
  opacity: 1;
}
.footer-contact {
  font-size: 0.96rem;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding: 26px 0 14px 0;
  }
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  z-index: 3000;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 -4px 18px rgba(33,49,74,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(.82,.01,.2,1), opacity 0.16s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  font-size: 1.03rem;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  margin-right: 6px;
  transition: background 0.15s, color 0.1s, box-shadow 0.11s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--success);
  color: #21314A;
  box-shadow: 0 3px 12px rgba(103,176,122,0.16);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--danger);
  border: 2px solid var(--danger);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  z-index: 3999;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 430px;
  background: #fff;
  color: var(--primary);
  border-radius: 24px;
  box-shadow: 0 8px 34px rgba(33,49,74,0.21);
  padding: 32px 24px 24px 24px;
  transform: translate(-50%, 60%);
  transition: transform 0.38s cubic-bezier(.8,0,.22,1), opacity 0.21s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal.visible {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h2 {
  color: var(--secondary);
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #F3F4F6;
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
  border: 2px solid var(--accent);
}
.cookie-toggle:checked {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.17s, background 0.2s;
}
.cookie-toggle:checked::before {
  background: #fff;
  transform: translateX(16px);
}
.cookie-toggle[disabled], .cookie-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.1s;
}
.cookie-modal-close:focus {
  outline: 2px solid var(--secondary);
  color: var(--primary);
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 19px 8px 17px 8px;
    max-width: 95vw;
    border-radius: 15px;
  }
}

/* ============= UTILITY CLASSES ============= */
.hide-sm {
  display: block;
}
@media (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }
}
.show-sm {
  display: none;
}
@media (max-width: 768px) {
  .show-sm {
    display: block !important;
  }
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.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;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(33,49,74,0.13);
  padding: 22px 17px;
  min-width: 200px;
  max-width: 360px;
  flex: 1 1 230px;
  transition: transform 0.15s, box-shadow 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(103,176,122,0.12);
  transform: scale(1.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

/*********************************
  FORM FIELDS (If any added in the future)
*********************************/
input, textarea, select {
  padding: 12px;
  border: 2px solid var(--accent);
  border-radius: 9px;
  width: 100%;
  font-size: 1rem;
  background: #fff;
  color: var(--primary);
  margin-bottom: 14px;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
}

/*********************************
  Transitions and Effects
*********************************/
.button, .cta-primary, .cta-secondary, .cookie-btn {
  cursor: pointer;
  transition: background 0.17s, color 0.13s, box-shadow 0.12s, transform 0.14s;
  outline: none;
}

/* ============ CUSTOM SCROLLBAR =============== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ============ END OF STYLES ============ */
