/* 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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100%;
  background: #F9F7F5;
  color: #3A435B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3A435B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BF8148;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4 {
  color: #3A435B;
  font-family: 'Merriweather', 'Georgia', serif;
  font-feature-settings: 'liga' 1;
} 
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 16px; }
h3 { font-size: 1.375rem; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(58,67,91,0.06);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HEADER & NAV ----------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(58,67,91,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 18px 0 18px 0;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 24px;
}
.main-nav > a {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background 0.15s, color 0.2s;
}
.main-nav > a.cta-button {
  background: #BF8148;
  color: #fff;
  font-weight: bold;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-left: auto;
  letter-spacing: 0.02em;
  padding: 9px 24px;
  border-radius: 25px;
  box-shadow: 0 1px 3px rgba(58,67,91,0.08);
  transition: background 0.2s, transform 0.18s;
}
.main-nav > a.cta-button:hover, .main-nav > a.cta-button:focus {
  background: #3A435B;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.main-nav > a:not(.cta-button):hover, .main-nav > a:not(.cta-button):focus {
  background: #F9F7F5;
  color: #BF8148;
}
.mobile-menu-toggle {
  display: none;
  background: #BF8148;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 151;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.15s, transform 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #3A435B;
  color: #fff;
  box-shadow: 0 2px 12px rgba(58,67,91,0.09);
  transform: scale(1.08);
}

/* MOBILE NAVIGATION -----------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 0 32px rgba(58,67,91,0.09);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #3A435B;
  align-self: flex-end;
  margin-right: 32px;
  margin-bottom: 24px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-left: 40px;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.1rem;
  padding: 10px 0;
  color: #3A435B;
  letter-spacing: 0.01em;
  border-radius: 8px;
  width: fit-content;
  transition: color 0.18s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #BF8148;
  background: #F9F7F5;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav > a {
    font-size: 0.97rem;
    padding: 6px 9px;
  }
  .main-nav img {
    height: 32px;
    margin-right: 10px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 14px;
  }
}

/* HERO ------------------------------------------------*/
.hero {
  background: #F9F7F5;
  min-height: 360px;
  padding: 72px 0 36px 0;
  display: flex;
  align-items: center;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 6px 28px rgba(58,67,91,0.07);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 600px;
}
.hero h1 {
  color: #3A435B;
  font-size: 2.7rem;
  font-family: 'Merriweather', 'Georgia', serif;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 1.22rem;
  color: #3A435B;
  max-width: 530px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}
.hero .cta-button {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero {
    padding: 44px 0 10px 0;
    min-height: 160px;
    border-radius: 0 0 10px 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.03rem;
    max-width: 95vw;
  }
}

/* BUTTONS & LINKS -------------------------------------*/
.cta-button {
  display: inline-block;
  background: #BF8148;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: bold;
  padding: 13px 38px;
  border-radius: 24px;
  border: none;
  box-shadow: 0 3px 16px rgba(191,129,72,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.14s;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cta-button:hover, .cta-button:focus {
  background: #3A435B;
  color: #fff;
  box-shadow: 0 6px 28px rgba(58,67,91,0.12);
  transform: translateY(-2px) scale(1.03);
}

button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
button:focus {
  outline: 2px solid #BF8148;
}

/* FLEX UTILITIES --------------------------------------*/
.feature-grid, .steps-grid, .step-process, .service-list, .tip-list, .value-list, .testimonial-slider, .testimonial-list, .article-list, .footer-main, .contact-info-block{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item, .step-item, .service-item, .tip-item, .value-item, .faq-item, .testimonial-card, .article-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 18px rgba(58,67,91,0.08);
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.feature-item img, .step-item img, .service-item img, .value-item img, .tip-item img, .faq-item img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  margin-bottom: 2px;
}
.step-item img {
  margin-bottom: 6px;
}
.faq-item img {
  margin-bottom: 4px;
}

@media (max-width: 1000px) {
  .feature-grid, .steps-grid, .step-process, .service-list, .tip-list, .value-list, .testimonial-slider, .testimonial-list, .article-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .steps-grid, .step-process, .service-list, .tip-list, .value-list, .testimonial-slider, .testimonial-list, .article-list, .footer-main, .contact-info-block {
    flex-direction: column;
    gap: 12px;
  }
}

/* FEATURES --------------------------------------------*/
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(58,67,91,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  flex: 1 1 180px;
  min-width: 220px;
  max-width: 330px;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .feature-item {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .feature-item {
    min-width: 100%;
  }
}

/* STEPS / HOW IT WORKS -------------------------------*/
.steps-grid, .step-process {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.step-item {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  align-items: flex-start;
  border-left: 4px solid #F9F7F5;
  border-top: 2px solid #F9F7F5;
  transition: border-color 0.24s;
}
.step-item:hover {
  border-left: 4px solid #BF8148;
  border-top: 2px solid #BF8148;
}
@media (max-width: 1000px) {
  .step-item {
    min-width: 150px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .step-item {
    min-width: 100%;
  }
}

/* TESTIMONIALS ---------------------------------------*/
.testimonials, .testimonials-main {
  background: #F9F7F5;
  padding: 40px 0 40px 0;
  margin-bottom: 0;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px;
  padding: 20px 18px 20px 26px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px rgba(58,67,91,0.09);
  border-left: 6px solid #BF8148;
  max-width: 375px;
  min-width: 220px;
  transition: box-shadow 0.19s, border-color 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(58,67,91,0.14);
  border-left: 6px solid #3A435B;
}
.testimonial-card p {
  color: #3A435B;
  font-size: 1.11rem;
  margin-bottom: 4px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  color: #657087;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 18px 10px 18px 14px;
  }
  .testimonial-slider, .testimonial-list {
    gap: 11px;
  }
}

/* SERVICES -------------------------------------------*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 18px rgba(58,67,91,0.08);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-price {
  margin-top: 12px;
  font-weight: 600;
  color: #BF8148;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.11rem;
}
@media (max-width: 1000px) {
  .service-item {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .service-item {
    min-width: 100%;
  }
}

/* CARDS & ARTICLES -----------------------------------*/
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.article-preview {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 370px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 1.5px 14px rgba(58,67,91,0.07);
  padding: 21px 14px 17px 22px;
  margin-bottom: 20px;
}
.article-preview h3 {
  font-size: 1.3rem;
  margin-bottom: 7px;
}
.article-preview p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #3A435B;
}
.article-preview a {
  color: #BF8148;
  font-weight: 600;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding-left: 2px;
  transition: color 0.16s;
}
.article-preview a:hover { color: #3A435B; text-decoration: underline; }

/* VALUES ---------------------------------------------*/
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-item {
  flex: 1 1 180px;
  min-width: 200px;
  max-width: 350px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(58,67,91,0.075);
  padding: 17px 14px 15px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1100px) {
  .value-item { min-width: 160px; }
}
@media (max-width: 768px) {
  .value-item { min-width: 100%; }
}

/* CONTACT --------------------------------------------*/
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.text-section address {
  margin-bottom: 8px;
  font-style: normal;
  font-size: 1rem;
  color: #3A435B;
}
.map-embed-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F9F7F5;
  border-radius: 10px;
  padding: 12px 18px;
  color: #3A435B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.map-embed-placeholder img {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .contact-info-block {
    flex-direction: column;
    gap: 10px;
  }
}

/* POLICY SECTIONS ------------------------------------*/
.policy-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 20px rgba(58,67,91,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.policy-text {
  font-size: 1.05rem;
  margin-top: 12px;
  color: #3A435B;
  font-family: 'Open Sans', Arial, sans-serif;
}
.policy-text ul {
  margin-left: 1.1em;
  margin-bottom: 1em;
  padding-left: 1em;
}
.policy-text h2, .policy-text h3 {
  font-family: 'Merriweather', Georgia, serif;
  color: #3A435B;
  margin-top: 22px;
}
.policy-text a {
  font-weight: 600;
  color: #BF8148;
}
.policy-text a:hover {
  color: #3A435B;
  text-decoration: underline;
}

/********* FAQ SECTION ***********/
.faq-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 18px rgba(58,67,91,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.faq-item {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 1.5px 14px rgba(58,67,91,0.08);
  background: #F9F7F5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.faq-item h3 {
  margin-bottom: 3px;
}
.faq-item p {
  color: #3A435B;
}
@media (max-width: 1000px) {
  .faq-item { min-width: 140px; }
}
@media (max-width: 768px) {
  .faq-item { min-width: 100%; }
  .faq-list { flex-direction: column; gap: 9px; }
}

/********* VALUES & WHY CHOOSE *********/
.why-choose-us ul {
  margin-left: 0.8em;
  padding-left: 1.2em;
  margin-bottom: 14px;
}
.why-choose-us li {
  margin-bottom: 7px;
  color: #3A435B;
  font-size: 1.01rem;
  line-height: 1.6;
}

/********* THANK YOU SECTION *********/
.thank-you-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 18px rgba(58,67,91,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/********* FOOTER -------------------------------------*/
footer {
  background: #fff;
  border-top: 1px solid #ececec;
  padding: 0 0 10px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 24px rgba(58,67,91,0.04);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 28px 0 22px 0;
  border-bottom: 1px solid #eee;
}
.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-nav a {
  color: #3A435B;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F9F7F5;
  color: #BF8148;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #BF8148;
  transition: color 0.12s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #3A435B;
  text-decoration: underline;
}
.footer-legal {
  text-align: center;
  color: #BDBDBD;
  font-size: 0.95rem;
  margin-top: 14px;
}
@media (max-width: 1050px) {
  .footer-main {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    padding: 18px 0 12px 0;
  }
}

/* CTA SECTIONS ----------------------------------------*/
.cta-end, .cta-section, .cta-share, .services-cta {
  background: #F9F7F5;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(191,129,72,0.04);
  margin-bottom: 60px;
  padding: 38px 15px 36px 15px;
}
.cta-end h2, .cta-section h2, .cta-share h2, .services-cta h2 {
  text-align: center;
  width: 100%;
  color: #3A435B;
}
.cta-end .cta-button, .cta-section .cta-button, .cta-share .cta-button, .services-cta .cta-button {
  display: block;
  margin: 0 auto;
  margin-top: 24px;
}

/********* SPACING ENFORCEMENT *********/
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/********* COOKIE CONSENT BANNER & MODAL ******/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #3A435B;
  border-top: 2px solid #BF8148;
  box-shadow: 0 -4px 24px rgba(58,67,91,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 18px 14px 18px;
  z-index: 1222;
  animation: cookie-slide-in 0.45s cubic-bezier(.77,.2,.25,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  95% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  margin-right: 15px;
  color: #3A435B;
  max-width: 440px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 11px;
}
.cookie-banner .cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-banner .cookie-accept {
  background: #BF8148;
  color: #fff;
  font-weight: 600;
}
.cookie-banner .cookie-accept:hover {
  background: #3A435B;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #F9F7F5;
  color: #BF8148;
  font-weight: 600;
  border: 1px solid #BF8148;
}
.cookie-banner .cookie-reject:hover {
  background: #BF8148;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #3A435B;
  border: 1px solid #3A435B;
  font-weight: 600;
}
.cookie-banner .cookie-settings:hover {
  background: #3A435B;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 14px 8px;
    gap: 13px;
  }
  .cookie-banner p {
    margin-right: 0;
    max-width: 100vw;
  }
  .cookie-banner .cookie-buttons {
    gap: 7px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(58,67,91,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.28s cubic-bezier(.77,.2,.25,1);
}
@keyframes fade-in-modal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 7px 42px rgba(58,67,91,0.14);
  padding: 36px 26px 28px 26px;
  width: 98%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-in 0.31s cubic-bezier(.77,.2,.25,1);
}
@keyframes modal-in {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 6px;
  color: #3A435B;
  font-family: 'Merriweather', Georgia, serif;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  background: #F9F7F5;
  border-radius: 9px;
  padding: 12px 10px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #3A435B;
}
.cookie-modal .cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  background: #ececec;
  border-radius: 13px;
  margin-right: 9px;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #3A435B;
  border-radius: 50%;
  transition: left 0.17s, background 0.17s;
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 19px;
  background: #BF8148;
}
.cookie-modal .cookie-category-essential {
  opacity: 0.67;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-accept {
  background: #BF8148;
  color: #fff;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-modal-accept:hover {
  background: #3A435B;
}
.cookie-modal .cookie-modal-cancel {
  background: #fff;
  color: #3A435B;
  border: 1px solid #3A435B;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
}
.cookie-modal .cookie-modal-cancel:hover {
  background: #F9F7F5;
  color: #BF8148;
}

/********* RESPONSIVE HELPER CLASSES *********/
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
  .feature-item, .service-item, .step-item, .article-preview { max-width: 95vw; }
}
@media (max-width: 1000px) {
  .container {
    max-width: 740px;
  }
  .feature-grid, .service-list, .article-list, .steps-grid {
    gap: 15px;
  }
  .step-item, .service-item, .feature-item {
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  .content-wrapper {
    gap: 11px;
  }
  .section, .policy-section, .thank-you-section, .features, .faq-section, .cta-end, .cta-section, .cta-share, .services-cta {
    padding: 18px 3vw;
    border-radius: 8px;
  }
  .hero, .testimonials, .testimonials-main, .footer-main {
    padding: 21px 0 10px 0;
    border-radius: 0;
  }
}

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

