/* RESET & BASE ------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: linear-gradient(120deg, #edeae4 0%, #fff 60%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #243338;
  min-height: 100vh;
  line-height: 1.68;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul, ol {
  padding-left: 1.25em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}

/* TYPOGRAPHY ------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #243338;
  font-weight: 700;
  line-height: 1.18;
}
h1 {font-size: 2.5rem; margin-bottom: 18px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.25rem; margin-bottom: 10px;}
h4, h5, h6 {font-size: 1.1rem; margin-bottom: 6px;}
p, ul, ol {margin-bottom: 16px;}
strong {font-weight: 700;}

@media (max-width: 480px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
  h3 {font-size: 1.1rem;}
}

/* MAIN LAYOUT & CONTAINERS ---------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

/* SECTIONS & SPACING ---------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  section, .section {
    padding: 28px 0 0 0;
    margin-bottom: 38px;
  }
  .container { padding-left: 12px; padding-right: 12px; }
}

/* HEADER ---------------------------------- */
header {
  background: linear-gradient(90deg, #edeae4, #fff 70%);
  box-shadow: 0 2px 16px 0 rgba(36,51,56,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}
.logo img {height: 44px; width: auto;}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #243338;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #C2AC7B;
  transition: width 0.2s;
  border-radius: 2px;
  margin-top: 1px;
}
header nav a:hover, header nav a.active {
  color: #C2AC7B;
}
header nav a:hover::after, header nav a.active::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(87deg, #C2AC7B 55%, #edeae4 100%);
  color: #243338;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 12px 32px;
  border-radius: 32px;
  box-shadow: 0 4px 20px 0 rgba(36,51,56,0.07);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.14s;
  margin-left: 16px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(87deg, #be9e51 65%, #c2ac7b 100%);
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(36,51,56,0.12);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 1024px) {
  header .container {
    gap: 8px; flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  header .container nav, header .btn-primary {
    display: none;
  }
  header .container {
    flex-wrap: nowrap;gap: 8px;
  }
}

/* HERO SECTION ---------------------------- */
.hero {
  background: linear-gradient(120deg, #edeae4 40%, #C2AC7B 170%);
  border-radius: 24px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  box-shadow: 0 2px 20px rgba(36,51,56, 0.09);
  position: relative;
  overflow: hidden;
}
.hero .container {
  justify-content: center;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 0;
}
.hero h1 {
  background: linear-gradient(90deg, #243338 72%, #C2AC7B 110%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 10px;
}
.hero p {
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #243338;
}
@media (max-width: 768px) {
  .hero {min-height: 170px; padding: 0; margin-bottom: 28px;}
  .hero .container {padding-top: 22px; padding-bottom: 22px;}
}

/* FLEX LAYOUTS ---------------------------- */
.features-grid, .services-list, .case-studies, .feature-list, .contact-details, .tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid > div, .services-list > div, .feature-list > li, .case-studies > div, .contact-details > div, .tip-list > li {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(36,51,56,0.06);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  min-width: 0;
}
.features-grid > div:hover, .services-list > div:hover, .feature-list > li:hover, .case-studies > div:hover, .contact-details > div:hover, .tip-list > li:hover {
  box-shadow: 0 6px 22px 0 rgba(194,172,123,0.16);
  transform: translateY(-2px) scale(1.017);
}
.services-list > div, .services-list > li {
  border-top: 4px solid #C2AC7B;
}
@media (max-width: 900px) {
  .features-grid, .services-list, .case-studies, .feature-list, .contact-details, .tip-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .features-grid, .services-list, .case-studies, .feature-list, .contact-details, .tip-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* CARDS & CARD CONTAINERS ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36,51,56,0.08);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 26px 0 rgba(194,172,123,0.16);
  transform: translateY(-2px) scale(1.012);
}

.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIALS ---------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(85deg, #fff 80%, #C2AC7B 180%);
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(36,51,56,0.06);
  min-width: 0;
  max-width: 700px;
  color: #243338;
  position: relative;
  transition: box-shadow 0.16s, transform 0.12s;
}
.testimonial-card strong {
  color: #be9e51;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 4px;
}
.testimonial-card p {
  font-style: italic;
  color: #243338;
  margin-bottom: 0;
}
.testimonial-rating {
  font-size: 1.28rem;
  color: #C2AC7B;
  letter-spacing: 2px;
  margin-bottom: -7px;
}
@media (max-width: 768px) {
  .testimonial-card {max-width: 100%;}
}

/* CTA BLOCKS ------------------------------ */
.cta-block {
  background: linear-gradient(96deg, #C2AC7B 30%, #edeae4 140%);
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(194,172,123,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 38px 16px;
  margin-bottom: 0px;
}
.cta-block h2, .cta-block p {color: #243338;}
.cta-block .btn-primary {margin-left: 0; margin-top: 10px;}
@media (max-width: 768px) {
  .cta-block {padding: 22px 8px;gap: 10px;}
}

/* PRICE TAG ------------------------------- */
.price-tag {
  display: inline-block;
  background: #C2AC7B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  padding: 5px 18px;
  margin: 12px 0 5px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* CONTACT DETAILS ------------------------- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.contact-details > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36,51,56,0.08);
  padding: 22px 20px 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-details img {
  height: 28px;
  margin-right: 7px;
}

/* CASE STUDIES / TIP LISTS ---------------- */
.case-studies, .tip-list {
  margin-bottom: 24px;
}
.case-studies .text-section, .tip-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(36,51,56,0.05);
  padding: 18px;
  font-size: 1rem;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .case-studies, .tip-list {
    flex-direction: column;
    gap: 10px;
  }
}

/* FEATURE LIST ---------------------------- */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}
.feature-list li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(36,51,56,0.05);
  padding: 12px 18px 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.feature-list img {
  height: 26px;
  margin-right: 5px;
}

/* FOOTER ---------------------------------- */
footer {
  background: linear-gradient(90deg, #edeae4 60%, #fff 110%);
  border-top: 1px solid #edeae4;
  box-shadow: 0 -2px 18px 0 rgba(36,51,56,0.03);
  margin-top: 44px;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
footer nav a {
  font-size: 0.98rem;
  color: #243338;
  transition: color 0.15s;
}
footer nav a:hover {
  color: #C2AC7B;
}
footer img {
  height: 36px;
}
footer span {
  color: #7a7873;
  font-size: 0.97rem;
}
@media (max-width: 768px) {
  footer .container {flex-direction: column;align-items: flex-start;gap: 10px; min-height: 65px;}
}

/* MOBILE MENU ----------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 41;
  background: #C2AC7B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(36,51,56, 0.09);
  transition: background 0.2s, transform 0.12s;
}
.mobile-menu-toggle:active {background: #be9e51; transform: scale(0.96);}
@media (max-width: 768px) {
  .mobile-menu-toggle {display: flex;}
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  max-width: 96vw;
  height: 100vh;
  background: linear-gradient(100deg, #fff, #edeae4 130%);
  box-shadow: -9px 0 38px 0 rgba(36,51,56, 0.17);
  z-index: 99999;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.34s cubic-bezier(.8,.04,.36,.87), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: #C2AC7B;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 18px 10px 15px 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(36,51,56, 0.07);
  transition: background 0.19s, transform 0.14s;
  display: flex;
}
.mobile-menu-close:active {background: #be9e51; transform: scale(0.97);}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 18px 24px 14px 32px;
}
.mobile-nav a {
  padding: 9px 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #243338;
  border-radius: 10px;
  transition: background 0.18s, color 0.15s;
  min-width: 95%;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #C2AC7B;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {display: none !important;}
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #243338;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 16px 20px 16px;
  z-index: 99998;
  box-shadow: 0 -2px 20px 0 rgba(36,51,56,0.13);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInUp 0.7s;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  90% { opacity: 0.9; }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  flex: 2 1 200px;
  max-width: 450px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.16s, color 0.19s, transform 0.13s;
}
.cookie-btn.accept {
  background: #C2AC7B;
  color: #243338;
}
.cookie-btn.accept:hover {
  background: #be9e51;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}
.cookie-btn.reject {
  background: #edeae4;
  color: #243338;
}
.cookie-btn.reject:hover {
  background: #bfb8a9;
}
.cookie-btn.settings {
  background: #fff;
  color: #C2AC7B;
  border: 1px solid #C2AC7B;
}
.cookie-btn.settings:hover {
  background: #C2AC7B;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.96rem;
    padding: 18px 7px 12px 8px;
  }
}

/* COOKIE CONSENT MODAL -------------------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100009;
  width: 100vw;
  height: 100vh;
  background: rgba(36,51,56, 0.43);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.33s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  90%{ opacity: 0.93; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #243338;
  border-radius: 20px;
  padding: 38px 30px 28px 30px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 8px 36px 0 rgba(36,51,56,0.15);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.43s;
  z-index: 110010;
}
.cookie-modal h3 {
  margin-bottom: 6px;
  font-size: 1.20rem;
}
.cookie-modal ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 22px;
  border-radius: 22px;
  background: #edeae4;
  position: relative;
  outline: none;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #C2AC7B;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px; 
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s;
}
.cookie-toggle:checked::before {
  left: 17px;
  background: #243338;
}
.cookie-modal .modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 13px;
}
.cookie-modal .cookie-btn {
  min-width: 90px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 13px;
  background: transparent;
  color: #C2AC7B;
  border: none;
  font-size: 1.6rem;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.15s;
  padding: 2px 8px;
}
.cookie-modal .close-modal:hover {
  background: #edeae4;
}
@media (max-width: 600px){
  .cookie-modal {padding: 18px 6px 13px 10px; min-width: 0;}
  .cookie-modal h3{font-size: 1.05rem;}
}

/* MISC/UTILITY ---------------------------- */
::-webkit-scrollbar {
  width: 8px;
  background: #edeae4;
}
::-webkit-scrollbar-thumb {
  background: #C2AC7B;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #be9e51;
}

.hide { display: none !important; }

/* Forms (if used for feedback) ------------ */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: #243338;
  border: 1.5px solid #edeae4;
  border-radius: 10px;
  padding: 11px 10px;
  margin-bottom: 12px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C2AC7B;
  outline: none;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* Visually hidden for accessibility ------- */
.visually-hidden {
  border:0;
  clip: rect(0 0 0 0);
  height:1px;
  margin:-1px;
  overflow:hidden;
  padding:0;
  position:absolute;
  width:1px;
}

/* END OF STYLE ---------------------------- */
