/* ================== CSS Reset and 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #F9FAFB;
  color: #264653;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
}
ul, ol {
  list-style-position: inside;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #264653;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, li { margin-bottom: 8px; }
p:last-child, li:last-child { margin-bottom: 0; }
strong, b { font-weight: bold; }

/* =========== TYPOGRAPHY SCALE & GENERAL ============= */
.text-section {
  margin-bottom: 24px;
}

.text-section h2, .text-section h3, .text-section h4 {
  margin-bottom: 10px;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  padding: 0;
}

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

/* =================== BUTTONS ==================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 32px;
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s;
  box-shadow: 0 2px 8px rgba(38,70,83,0.04);
  margin-top: 10px;
  margin-bottom: 10px;
}
.btn-primary {
  background: #264653;
  color: #F1FAEE;
  border: 2px solid #264653;
}
.btn-primary:hover, .btn-primary:focus {
  background: #E9C46A;
  color: #264653;
  border-color: #E9C46A;
}
.btn-secondary {
  background: #E9C46A;
  color: #264653;
  border: 2px solid #E9C46A;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #264653;
  color: #F1FAEE;
  border-color: #264653;
}

/* ================= HEADER & NAV =================== */
header {
  background: #F1FAEE;
  box-shadow: 0 2px 8px rgba(38,70,83,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 16px 0;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.main-nav a {
  padding: 6px 8px;
  border-radius: 24px;
  transition: background 0.12s, color 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E9C46A;
  color: #264653;
}
.main-nav .btn-primary {
  margin-left: 10px;
  margin-right: 0;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 14px;
  color: #264653;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E9C46A;
}

/* ================= MOBILE MENU ====================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(38,70,83,0.94);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.37,0.51,0.21,1); 
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.active {
  transform: translateX(0);
  display: flex;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F1FAEE;
  font-size: 2.1rem;
  margin-bottom: 32px;
  cursor: pointer;
  transition: color 0.15s;
  align-self: flex-end;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E9C46A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  color: #F1FAEE;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 14px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9C46A;
  color: #264653;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex;
  }
}

/* ============= HERO SECTION =================== */
.hero {
  background: #F1FAEE;
  border-radius: 0 0 32px 32px;
  padding: 48px 0 44px 0;
  box-shadow: 0 4px 20px rgba(38,70,83,0.07);
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 750px;
  text-align: center;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.12rem;
  margin-bottom: 28px;
}

/* =============== FLEXBOX LAYOUTS =================== */
/* Mandatory Spacing & Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(38,70,83,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
}
.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: 18px;
  box-shadow: 0 2px 12px rgba(38,70,83,0.08);
  margin-bottom: 20px;
  color: #264653;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  background: #F9FAFB;
  border-radius: 15px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(38,70,83,0.03);
  margin-bottom: 20px;
}

/* ========== FEATURES GRID ============= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* ========== TRUST/BRAND LOGOS ========= */
.brand-logos {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  margin-top: 12px;
}
.brand-logos img {
  max-height: 44px;
  opacity: 0.88;
}
/* ========== TESTIMONIALS ========= */
.testimonial-cards, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  flex: 1 1 300px;
  background: #fff;
  color: #264653;
  border-left: 5px solid #E9C46A;
  min-width: 240px;
  max-width: 420px;
  box-shadow: 0 4px 12px rgba(38,70,83,.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(38,70,83,0.17);
  transform: translateY(-4px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 7px;
  font-style: italic;
}
.review-quotes {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-quotes blockquote {
  background: #F1FAEE;
  border-left: 4px solid #E9C46A;
  border-radius: 10px;
  padding: 14px 22px;
  color: #264653;
  font-style: italic;
  font-size: 1.02rem;
}
.review-quotes span {
  display: block;
  color: #264653;
  font-size: 0.94em;
  margin-top: 7px;
}
.star-ratings {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.star-ratings span {
  font-size: 0.98rem;
  font-weight: 500;
  margin-left: 12px;
  color: #264653;
}
.review-summaries ul {
  margin-top: 10px;
  margin-left: 16px;
}
.review-summaries li {
  margin-bottom: 6px;
}

/* ========== CTA SECTION =========== */
.cta-section {
  background: #E9C46A;
  border-radius: 32px;
  padding: 54px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 18px rgba(38,70,83,0.11);
}
.cta-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-section h2 {
  color: #264653;
  margin-bottom: 8px;
}

/* ========== PRICING TABLE ========== */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.05);
}
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #F1FAEE;
}
.price-row:last-child {
  border-bottom: none;
}
.price-features ul {
  margin: 14px 0 10px 24px;
}
.price-notes {
  background: #F1FAEE;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.97em;
  color: #264653;
}

/* ========== FAQ ========== */
.faq-list {
  margin: 24px 0 0 12px;
}
.faq-list li {
  margin-bottom: 14px;
}

/* ========== BLOG SECTION =========== */
.blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-teasers .text-section {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.06);
  padding: 18px 16px;
  min-width: 220px;
  flex: 1 1 262px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.blog-teasers .text-section:hover {
  box-shadow: 0 8px 18px rgba(38,70,83,0.15);
  transform: translateY(-3px) scale(1.02);
}
.blog-teasers a {
  color: #264653;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.13s;
}
.blog-teasers a:hover {
  color: #E9C46A;
}
.blog-categories {
  margin: 24px 0 0 0;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: 0;
  margin-top: 6px;
}
.blog-categories li {
  background: #E9C46A;
  color: #264653;
  border-radius: 12px;
  padding: 6px 19px;
  font-size: 0.99em;
}
.newsletter-description {
  margin-bottom: 18px;
}

/* ========== SERVICE SECTION =========== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.service-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.06);
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.service-item:hover {
  box-shadow: 0 7px 16px rgba(38,70,83,0.13);
  transform: translateY(-2px) scale(1.015);
}
.service-item img {
  height: 38px;
  width: auto;
  margin-bottom: 6px;
}

/* ========== PROCESS STEP LISTS =========== */
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
  counter-reset: ordered;
}
.step-list li {
  background: #F1FAEE;
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 160px;
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  font-size: 1.03rem;
  color: #264653;
  list-style: none;
  gap: 14px;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(38,70,83,0.05);
  position: relative;
  transition: box-shadow 0.18s, background 0.13s;
}
.step-list li:hover {
  background: #E9C46A;
  color: #264653;
  box-shadow: 0 4px 18px rgba(38,70,83,0.13);
}
.step-list img {
  height: 28px;
  width: 28px;
  opacity: 0.95;
}
.process-timeline {
  margin-top: 12px;
  background: #F9FAFB;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.98em;
  color: #264653;
  box-shadow: 0 1px 4px rgba(38,70,83,0.04);
}

/* ========== ABOUT/TEAM SECTIONS ========== */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.team-values ul {
  margin-left: 18px;
}
.certificates-list ul {
  margin-left: 18px;
  margin-bottom: 10px;
}
.years-experience {
  background: #E9C46A;
  color: #264653;
  padding: 13px 21px;
  border-radius: 12px;
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.13rem;
  display: inline-block;
}

/* ========== FOOTER ================ */
footer {
  background: #F1FAEE;
  color: #264653;
  padding: 36px 0 0 0;
  border-top: 1px solid #ECECEC;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-top a img {
  height: 42px;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0;
}
.footer-links a {
  color: #264653;
  padding: 4px 10px;
  border-radius: 16px;
  transition: background 0.13s;
}
.footer-links a:hover, .footer-links a:focus {
  background: #E9C46A;
  color: #264653;
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
  border-top: 1px solid #E9C46A;
  margin-bottom: 8px;
}
.mini-contact-info {
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
}
.mini-contact-info img {
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-social a img {
  height: 24px;
  width: 24px;
  opacity: 0.82;
  transition: opacity 0.15s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  opacity: 1;
}
.footer-copy {
  text-align: center;
  font-size: 0.88rem;
  color: #718692;
  padding: 12px 0 8px 0;
}

/* ========== CONTACT PAGE, THANK YOU ETC. ========== */
.contact-info {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.google-maps-loc {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
  background: #F1FAEE;
  border-radius: 11px;
  padding: 11px 15px;
}
.open-hours {
  margin-left: 18px;
  margin-bottom: 11px;
}
.open-hours li {
  margin-bottom: 4px;
}
.thank-you-message {
  background: #E9C46A;
  color: #264653;
  border-radius: 12px;
  padding: 13px 22px;
  margin-bottom: 22px;
}
.next-steps-information ul {
  margin-left: 14px;
}
.next-steps-information li {
  margin-bottom: 7px;
}

/* ============ COOKIE CONSENT BANNER & MODAL ============ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1200;
  background: #fff;
  border-top: 2px solid #E9C46A;
  box-shadow: 0 -2px 18px rgba(38,70,83,0.14);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 1rem;
  animation: cookie-slideup-in 0.42s cubic-bezier(0.5,1,0.89,1.2) 1;
}
@keyframes cookie-slideup-in {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  flex: 1 1 320px;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-buttons .btn-cookie {
  border-radius: 22px;
  padding: 8px 22px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.btn-cookie-accept {
  background: #264653;
  color: #F1FAEE;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
  background: #E9C46A;
  color: #264653;
}
.btn-cookie-reject {
  background: #E9C46A;
  color: #264653;
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
  background: #fff;
  border: 1px solid #264653;
  color: #264653;
}
.btn-cookie-settings {
  background: #F1FAEE;
  color: #264653;
  border: 1px solid #E9C46A;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: #E9C46A;
  color: #264653;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(38,70,83,0.69);
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookie-fadein 0.35s;
}
@keyframes cookie-fadein { from { opacity: 0;} to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  color: #264653;
  border-radius: 20px;
  box-shadow: 0 8px 34px rgba(38,70,83, 0.22);
  max-width: 440px;
  width: 93vw;
  padding: 36px 28px 26px 28px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}
.cookie-modal .category input[type=checkbox] {
  width: 20px; height: 20px;
  accent-color: #264653;
}
.cookie-modal .category strong {
  font-weight: 600;
}
.cookie-modal .category.always-on input[type=checkbox] {
  accent-color: #E9C46A;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #264653;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #E9C46A;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal-overlay.active {
  display: flex;
}

/* ============ RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 1023px) {
  .footer-top, .footer-bottom, .brand-logos, .team-profiles, .feature-grid, .service-list, .blog-teasers, .content-grid, .testimonial-cards, .testimonial-slider, .step-list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cta-section {
    border-radius: 22px;
    padding: 34px 10px;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 34px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  .hero {
    border-radius: 0 0 15px 15px;
    padding: 28px 0 28px 0;
  }
  .footer-top, .footer-bottom, .brand-logos, .team-profiles, .feature-grid, .service-list, .blog-teasers, .content-grid, .testimonial-cards, .testimonial-slider, .step-list {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .section {
    padding: 14px 4px;
    margin-bottom: 26px;
  }
  .cta-section {
    border-radius: 12px;
    padding: 20px 6px;
    margin-bottom: 32px;
  }
  .pricing-table {
    padding: 12px 6px;
  }
  .feature-item, .service-item, .blog-teasers .text-section, .card {
    padding: 14px 8px;
    min-width: 0;
  }
  .content-wrapper {
    padding: 0 0 0 0;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 7px 14px 7px;
    font-size: 0.96rem;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 21px 7px 14px 15px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.25rem;
  }
  .hero h1 {
    font-size: 1.15rem;
  }
  .main-nav .btn-primary,
  .btn-primary, .btn-secondary {
    padding: 10px 14px;
    font-size: 0.99rem;
  }
  .cta-section h2 {
    font-size: 1rem;
  }
  .footer-links, .footer-social {
    gap: 8px;
    font-size: 0.97em;
  }
}

/* ==== ACCESSIBILITY (FOCUS VISIBLE STYLES) ==== */
a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, .cookie-buttons .btn-cookie:focus-visible {
  outline: 2px solid #E9C46A;
  outline-offset: 3px;
}

/* =============== END =============== */
