/* ---------------------------------------------
   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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FFF8F4;
  color: #312c23;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  padding-left: 2rem;
  margin-bottom: 16px;
}
a {
  color: #B39E74;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7e6945;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------------------------------------------
   Typography & Brand Fonts
---------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #1C1C28;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.subtitle {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #533A1C;
  font-size: 1.18rem;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.4;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #312c23;
  margin-bottom: 10px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #1C1C28;
}

/* ---------------------------------------------
   Layout Utility Classes
---------------------------------------------- */
.container {
  width: 100%;
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF8F4;
  border-radius: 22px;
  box-shadow: 0 4px 22px 0 rgba(179,158,116,0.08);
}
main > section:not(:last-child) {
  margin-bottom: 60px;
}

/* ---------------------------------------------
   Header & Navigation
---------------------------------------------- */
header {
  background: #F5F5F5;
  box-shadow: 0 2px 12px 0 rgba(208,170,110,0.10);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.logo img, .logo-footer img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #312c23;
  padding: 7px 13px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFEAD2;
  color: #B39E74;
}
.cta-btn {
  background: #B39E74;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 32px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 8px 0 rgba(179,158,116,0.14);
  display: inline-block;
  margin-left: 14px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A2885B;
  color: #fff6e9;
  box-shadow: 0 6px 18px 0 rgba(179,158,116,0.22);
}
.cta-btn.secondary {
  background: #fff;
  color: #B39E74;
  border: 2px solid #B39E74;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #FFF4E0;
  color: #A2885B;
}
.mobile-menu-toggle {
  /* Hamburger icon button */
  display: none;
  background: #B39E74;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.70rem;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 14px;
  transition: background 0.18s;
  z-index: 32;
}
.mobile-menu-toggle:hover {
  background: #A2885B;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 860px) {
  .main-nav a, .cta-btn {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
  .logo img {
    height: 38px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ---------------------------------------------
   Mobile Menu (Slide-in)
---------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,248,244, 0.96);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 42px 0 rgba(179,158,116,0.13);
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(.93,.23,.45,.99);
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: #B39E74;
  color: #FFF;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 131;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
  box-shadow: 0 2px 12px 0 rgba(179,158,116,0.08);
}
.mobile-menu-close:hover {
  background: #A2885B;
}
.mobile-nav {
  background: #FFF8F4;
  box-shadow: -2px 0 24px 0 rgba(208,170,110,0.16);
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  max-width: 340px;
  width: 86vw;
  height: 100vh;
  padding: 65px 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  overflow-y: auto;
}
.mobile-nav a {
  color: #312c23;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  padding: 14px 0;
  border-radius: 12px;
  width: 100%;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEAD2;
  color: #B39E74;
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ---------------------------------------------
   Main Structure & Responsive Section Spacing
---------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 24px -2px rgba(179,158,116,0.054);
}
@media (max-width: 650px) {
  section {
    padding: 22px 7px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

/* ---------------------------------------------
   Card & Feature Layouts (Flex only)
---------------------------------------------- */
.features-grid, .service-grid, .limited-edition-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.features-grid > div, .service-grid > div, .limited-edition-grid > div, .values-grid > div {
  flex: 1 1 240px;
  background: #FFF4E0;
  border-radius: 16px;
  padding: 26px 22px 20px 22px;
  min-width: 210px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(179,158,116,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.features-grid > div:hover,
.service-grid > div:hover,
.limited-edition-grid > div:hover,
.values-grid > div:hover {
  box-shadow: 0 6px 24px 0 rgba(179,158,116,0.15);
  transform: translateY(-3px);
}
.quality-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FAEFD9;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(179,158,116,0.06);
  padding: 18px 12px;
  min-width: 160px;
  margin-bottom: 20px;
  gap: 10px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF4E0;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(179,158,116,0.07);
  display: flex;
  flex-direction: column;
  padding: 26px 18px;
}
.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) {
  .features-grid, .service-grid, .limited-edition-grid, .values-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* ---------------------------------------------
   Testimonial & Review Styles
---------------------------------------------- */
.testimonial-slider {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 17px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FDFCFB;
  border-radius: 16px;
  padding: 22px 24px;
  min-width: 210px;
  max-width: 370px;
  box-shadow: 0 6px 32px 0 rgba(46,17,1,0.045);
  border: 1.5px solid #FFF0D0;
  margin-bottom: 20px;
  color: #1C1C28;
}
.testimonial-card p {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #312c23;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #B39E74;
  font-weight: 700;
}
.rating-summary {
  margin-top: 8px;
  color: #B39E74;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #fff;
  padding: 11px 18px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 2px 7px 0 rgba(179,158,116,0.07);
  font-weight: 500;
}
@media (max-width: 530px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 17px 10px;
  }
  .rating-summary {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.96rem;
  }
}

/* ---------------------------------------------
   Feature/Support-contact and Cards
---------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.support-contact, .call-contact, .contact-cta {
  margin-top: 20px;
  background: #FFF8F4;
  padding: 16px 20px;
  border-radius: 14px;
  color: #312c23;
  font-size: 1.02rem;
  line-height: 1.5;
  box-shadow: 0 2px 10px 0 rgba(179,158,116,0.06);
}
.benefits-list ul, .edition-highlights ul, .next-steps ul {
  margin-left: 1.6rem;
  margin-bottom: 14px;
  list-style: disc inside;
}
.topic-filters {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 22px;
}
.topic-filters span {
  color: #B39E74;
  font-weight: 600;
  font-size: 1.07rem;
  margin-right: 7px;
}

/* FAQ, Accordion (simple reveal, no JS styles here) */
.faq-accordion > div {
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #FFF8F4;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(179,158,116,0.06);
}
.faq-accordion h3 {
  margin-bottom: 10px;
}

/********* TEAM PROFILES *********/
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}
.team-profile {
  background: #FFF4E0;
  border-radius: 14px;
  padding: 17px 18px;
  min-width: 180px;
  flex: 1 1 180px;
  box-shadow: 0 2px 10px 0 rgba(179,158,116,0.07);
}
@media (max-width: 580px) {
  .team-profiles {
    flex-direction: column;
    gap: 9px;
  }
  .team-profile {
    min-width: 0;
    max-width: 100%;
    padding: 13px 8px;
  }
}

/* ---------------------------------------------
   Form, Map Embed
---------------------------------------------- */
.company-details {
  margin-top: 14px;
  background: #FFF4E0;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 2px 10px 0 rgba(179,158,116,0.08);
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 4px;
}
.map-embed img {
  width: 28px;
  height: 28px;
}

/* ---------------------------------------------
   Article List, Next Steps
---------------------------------------------- */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-list article {
  background: #FFF4E0;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px 0 rgba(179,158,116,0.07);
}
.next-steps h2 {
  font-size: 1.3rem;
  margin-top: 18px;
}

/********* CERTIFICATION BADGES *********/
.certification-badges {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  align-items: center;
}
.certification-badges img {
  width: 52px;
  height: auto;
}

/********* UNIQUE POINTS SECTION *********/
.unique-points {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.unique-points ul {
  min-width: 220px;
}
@media (max-width: 690px) {
  .unique-points {
    flex-direction: column;
    gap: 18px;
  }
  .certification-badges {
    gap: 10px;
  }
}

/* ---------------------------------------------
   Footer Styles
---------------------------------------------- */
footer {
  background: #F5F5F5;
  padding: 38px 0 18px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -2px 12px 0 rgba(208,170,110,0.10);
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
.logo-footer img {
  width: 55px;
  height: auto;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #7e6945;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B39E74;
}
.footer-contact {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #312c23;
  font-size: 1rem;
  line-height: 1.6;
}
.footer-contact a {
  color: #B39E74;
  word-break: break-all;
}
@media (max-width: 710px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-nav, .footer-contact {
    margin-top: 9px;
  }
}

/* ---------------------------------------------
   Cookie Consent Banner & Modal
---------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1700;
  background: #FFF4E0;
  box-shadow: 0 -6px 28px 0 rgba(46,17,1,.08);
  padding: 24px 20px 20px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.35s cubic-bezier(.95,.03,.59,1.02), opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 8 1 200px;
  color: #312c23;
  font-size: 1.03rem;
  line-height: 1.6;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex: 2 1 150px;
}
.cookie-banner button,
.cookie-banner .cookie-btns > button {
  border-radius: 12px;
  font-size: 1rem;
  padding: 10px 23px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border: none;
  transition: background 0.18s,color 0.15s, box-shadow 0.17s;
  box-shadow: 0 2px 8px 0 rgba(179,158,116,0.04);
}
.cookie-banner .accept-btn {
  background: #B39E74;
  color: #fff;
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: #A2885B;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #C6886a;
  border: 2px solid #C1A062;
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: #FFF8F4;
  color: #7e6945;
}
.cookie-banner .settings-btn {
  background: #eee3d0;
  color: #946825;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #FFEAD2;
  color: #B39E74;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 7vw 18px 7vw;
  }
  .cookie-banner .cookie-btns {
    gap: 10px;
    width: 100%;
  }
}

/***** COOKIE MODAL DIALOG *****/
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(237,220,200, 0.36);
  transition: opacity 0.23s;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  min-width: 340px;
  max-width: 96vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 44px 0 rgba(204,176,80,0.13);
  z-index: 2010;
  padding: 34px 26px 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  transition: opacity 0.3s, transform 0.38s;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%,-50%) scale(0.96);
  pointer-events: none;
}
.cookie-modal h2 {
  margin-bottom: 0;
  font-size: 1.5rem;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-weight: 500;
  color: #1C1C28;
  min-width: 110px;
}
.cookie-category .cookie-toggle {
  width: 44px;
  height: 24px;
  background: #F0E2C5;
  border-radius: 12px;
  position: relative;
  margin-left: 14px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-category .cookie-toggle[data-enabled="true"] {
  background: #B39E74;
}
.cookie-category .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 7px 0 rgba(179,158,116,0.08);
  transition: left 0.19s;
}
.cookie-category .cookie-toggle[data-enabled="true"]:before {
  left: 24px;
  background: #FFF8F4;
}
.cookie-modal .category-description {
  color: #8d794f;
  font-size: 0.98rem;
  margin-top: 2px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 21px;
}
.cookie-modal .modal-actions button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 12px;
  border: none;
}
.cookie-modal .modal-actions .accept-btn {
  background: #B39E74;
  color: #fff;
}
.cookie-modal .modal-actions .accept-btn:hover {
  background: #A2885B;
}
.cookie-modal .modal-actions .cancel-btn {
  background: #fff;
  color: #B39E74;
  border: 2px solid #B39E74;
}
.cookie-modal .modal-actions .cancel-btn:hover {
  background: #FFF4E0;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    max-width: 98vw;
    padding: 18px 4vw 16px 4vw;
  }
}

/* ---------------------------------------------
   Animations & Micro-Interactions
---------------------------------------------- */
.cta-btn, .cta-btn.secondary, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
}
.card, .team-profile, .features-grid > div, .testimonial-card,
.article-list article, .company-details, .faq-accordion > div {
  transition: box-shadow 0.21s, transform 0.17s;
}
.features-grid > div:active, .service-grid > div:active, .card:active, .testimonial-card:active {
  transform: scale(0.99) translateY(1px);
  box-shadow: 0 1.5px 8px 0 rgba(179,158,116,0.09);
}

/* Subtle hover animation on icons */
.features-grid img, .service-grid img, .limited-edition-grid img {
  transition: transform 0.22s;
}
.features-grid > div:hover img,
.service-grid > div:hover img,
.limited-edition-grid > div:hover img {
  transform: scale(1.09) rotate(-3deg);
}

/* ---------------------------------------------
   Miscellaneous Tweaks & Helpers
---------------------------------------------- */
::-webkit-scrollbar { width: 8px; background: #F9E7CF; }
::-webkit-scrollbar-thumb { background: #E6D1B6; border-radius: 16px; }
::selection { background: #fff6e0; }

/* Prevent elements from overlapping & add universal margin bottom  */
section > *, .content-wrapper > *, .team-profile, .faq-accordion > div, .testimonial-card, .card, .features-grid > div, .article-list article {
  margin-bottom: 20px;
}
section > *:last-child, .content-wrapper > *:last-child { margin-bottom: 0; }

hr {
  border: none;
  border-top: 1.5px solid #F0E0CA;
  margin: 26px 0;
}

/************************************************************
     RESPONSIVE TYPOGRAPHY: Don't use clamp()!
************************************************************/
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.07rem; }
}

/************************************************************
          THE WARM & FRIENDLY PERSONALITY TOUCHES
************************************************************/
body {
  background: #FFF8F4;
}
section, .card, .testimonial-card, .features-grid > div, .team-profile, .article-list article, .quality-seal, .company-details, .faq-accordion > div {
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(179,158,116,0.07);
}
button, .cta-btn, .main-nav a, .mobile-nav a {
  border-radius: 14px !important;
}

/************************************************************
          ACCESSIBILITY & FOCUS MANAGEMENT
************************************************************/
:focus-visible {
  outline: 3px solid #FFEAD2;
  outline-offset: 2px;
}

/************************************************************
          END OF CSS FILE / THANK YOU
************************************************************/ 
