/* --- 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
b1, html {
  height: 100%;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #233142;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #233142;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', 'Georgia', serif;
  font-weight: 700;
  color: #233142;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #233142;
  margin-bottom: 16px;
  font-weight: 400;
  max-width: 760px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: 'Spectral', 'Georgia', serif;
  font-size: 1.25rem;
  font-style: italic;
  margin: 0 0 10px 0;
  padding: 0;
  color: #233142;
  font-weight: bold;
}

/* --- GENERAL LAYOUT & SPACING ---*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  /* For flexbox children; the rest is set in content areas */
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child {
  margin-bottom: 0;
}

/* --- FLEXBOX LAYOUTS (MANDATORY CLASSES) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 14px rgba(35,49,66,0.10), 0 1.5px 5px rgba(246,185,59,0.08);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 min(320px,100%);
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 5px 25px rgba(35,49,66,0.18), 0 2px 10px rgba(246,185,59,0.13);
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f3f3f3;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0px 2px 8px 0 rgba(35,49,66,0.07);
  border-left: 7px solid #F6B93B;
  max-width: 530px;
  transition: box-shadow 0.20s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(35,49,66,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
}

/* --- HERO SECTIONS --- */
.hero {
  background: #F6B93B;
  color: #233142;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 25px #F6B93B33;
  margin-bottom: 60px;
}
.hero .content-wrapper{
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
}
.hero h1 {
  color: #233142;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 8px;
  text-shadow: 0 1px 0 #fad992;
}
.hero p {
  color: #233142;
  font-size: 1.18rem;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 3px 18px rgba(35,49,66,0.10);
  z-index: 30;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 22px 0 16px 0;
  font-size: 1.09rem;
}
.main-nav a {
  color: #233142;
  font-weight: 600;
  position: relative;
  padding: 8px 2px;
  border-radius: 7px;
  transition: color 0.16s, background 0.14s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F6B93B;
  background: rgba(246,185,59,0.12);
}
.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 18px;
  vertical-align: middle;
}
.cta-primary {
  background: #233142;
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 24px;
  margin-left: 10px;
  font-size: 1.10rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  transition: background 0.16s, box-shadow 0.15s, color 0.13s;
  box-shadow: 0 2px 6px #23314218;
  border: none;
  display: inline-block;
  text-shadow: 0 2px 6px #23314217;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F6B93B;
  color: #233142 !important;
  box-shadow: 0 3px 16px #F6B93B2c;
}
.cta-secondary {
  background: #fff;
  color: #233142 !important;
  border: 2px solid #F6B93B;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  transition: border 0.13s, color 0.13s, background 0.13s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F6B93B;
  color: #233142 !important;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #233142;
  color: #fff;
  border-radius: 7px;
  padding: 9px 16px;
  font-size: 2rem;
  z-index: 44;
  margin-right: 4px;
  margin-top: 12px;
  border: none;
  transition: background 0.15s, color 0.13s, box-shadow 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F6B93B;
  color: #233142;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #233142ee;
  transition: transform 0.45s cubic-bezier(.44,.13,.28,.86);
  transform: translateX(-100vw);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 100vw #23314213;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 0 0;
  background: #F6B93B;
  color: #233142;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 9px 15px;
  transition: background 0.16s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #233142;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 38px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  padding: 10px 8px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6B93B;
  color: #233142;
}

/* --- MAIN & FOOTER --- */
main {
  width: 100%;
  margin: 0 auto 64px auto;
  z-index: 1;
  background: #fff;
  min-height: 60vh;
  display: block;
}
footer {
  background: #233142;
  color: #fff;
  padding: 44px 0 34px 0;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #fff;
}
.footer-nav a {
  color: #F6B93B;
  font-weight: bold;
  padding: 3px 5px;
  border-radius: 4px;
  transition: color 0.15s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #233142;
  background: #F6B93B;
}
address p, footer address, footer p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 4px;
  font-style: normal;
}
footer address {
  margin-bottom: 8px;
}

/* --- CARDS --- */
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px #23314215;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.card-title {
  font-family: 'Spectral', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #233142;
  margin-bottom: 6px;
}
.card-subtitle {
  font-weight: 500;
  color: #F6B93B;
}

/* --- TEXT SECTION, LISTS, FEATURE ITEMS--- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
ul, ol {
  margin-bottom: 14px;
  padding-left: 20px;
}
ul li, ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 1.06rem;
  font-weight: 500;
}
ul li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  height: 24px;
  width: 24px;
}
ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #F6B93B;
  border-radius: 50%;
  display: inline-block;
}
ol li {
  list-style: decimal inside;
  padding-left: 6px;
}
ol li::before { display: none; }

/* --- TABLES (if any appear) --- */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 18px 0;
  font-size: 1rem;
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 12px 14px;
}
th {
  background: #F6B93B;
  color: #233142;
  font-weight: 700;
}
td {
  border-bottom: 1px solid #e0e0e0;
}

/* --- SPACING UTILITIES, GENERAL GAPS --- */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-48 { margin-bottom: 48px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mt-32 { margin-top: 32px !important; }
.pt-24 { padding-top: 24px !important; }
pb-24 { padding-bottom: 24px !important; }

/* --- FORM STYLES (if any forms appear) --- */
input, select, textarea {
  font-size: 1.1rem;
  border: 2px solid #F6B93B;
  border-radius: 7px;
  padding: 11px 15px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 3.5px #2331421f;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: #233142;
  outline: 2px solid #F6B93B;
}
label {
  font-size: 1rem;
  font-weight: 600;
  color: #233142;
  margin-bottom: 6px;
  display: block;
}

/* --- HOVER ANIMATION UTILITY --- */
a, button, .cta-primary, .cta-secondary {
  transition: all 0.16s cubic-bezier(.47,.01,.41,1.02);
}

/* --- MODERN GEOMETRY DECORATIVE ELEMENTS (ex: hero bg) --- */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 65vw;
  width: 180px;
  height: 180px;
  background: #F3F3F3;
  border-radius: 24px 64px 40px 80px;
  opacity: .7;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .hero::after { display: none; }
}

/* --- RESPONSIVE: MOBILE FIRST --- */
@media (max-width: 1040px) {
  .main-nav { gap: 18px; }
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; font-size: 1rem; }
  .content-wrapper { gap: 10px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
  }
  .container { padding-left: 12px; padding-right: 12px; }
  .content-wrapper {
    gap: 11px;
  }
  .section {
    padding: 26px 8px 32px 8px;
    margin-bottom: 42px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .hero h1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
  .hero p { font-size: 1rem; }
  .footer-nav { flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  .card, .testimonial-card { padding: 16px 8px; }
  .section { padding: 17px 2px; }
}

/* --- TESTIMONIAL/REVIEW CONTRAST --- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card p {
  color: #233142 !important;
  background: #f3f3f3;
}
.testimonial-card strong { color: #233142; font-weight: bold; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #233142;
  color: #fff;
  padding: 24px 18px 19px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  box-shadow: 0 -2px 26px #2331421e;
  gap: 14px;
  transition: transform 0.45s, opacity 0.28s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 0.99rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  max-width: 520px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.17s, box-shadow 0.13s, color 0.13s;
  outline: none;
}
.cookie-btn.accept {
  background: #F6B93B;
  color: #233142;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #233142;
}
.cookie-btn.reject {
  background: #f3f3f3;
  color: #233142;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F6B93B;
  color: #233142;
}
.cookie-settings-btn {
  background: #233142;
  border: 2px solid #F6B93B;
  color: #F6B93B;
  font-weight: bold;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F6B93B;
  color: #233142;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,49,66,0.78);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  color: #233142;
  border-radius: 19px;
  box-shadow: 0 3px 30px #23314237;
  padding: 32px 24px 26px 24px;
  max-width: 410px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 10001;
}
.cookie-modal h3 {
  margin-bottom: 9px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.09rem;
  font-weight: 500;
  margin-bottom: 7px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #F6B93B;
  width: 21px;
  height: 21px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 15px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: #F6B93B;
  color: #233142;
  border: none;
  border-radius: 7px;
  font-size: 1.3rem;
  padding: 4px 10px;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #233142;
  color: #F6B93B;
}

/* --- SCROLLBAR FOR MODERN BOLD LOOK --- */
::-webkit-scrollbar {
  width: 11px;
  background: #f3f3f3;
}
::-webkit-scrollbar-thumb {
  background: #23314299;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F6B93B;
}

/* --- FOCUS INDICATORS ---*/
:focus-visible { outline: 2.5px solid #F6B93B; outline-offset: 2px; }

/* --- HIDE/SHOW UTILITY ---*/
.hide { display: none !important; }
.show { display: block !important; }

/* --- BOLD GEOMETRIC DECOR for Modern Bold ---*/
.section {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 11px #2331420d;
}
.section:nth-child(odd) {
  background: #F3F3F3;
}
.section:not(.hero)::before {
  content: '';
  display: block;
  position: absolute;
  width: 48px; height: 48px;
  right: 36px; top: 24px;
  background: #F6B93B;
  border-radius: 14px 36px 18px 24px/32px 28px 36px 22px;
  opacity: .13;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .section:not(.hero)::before {
    right: 11px;
    top: 6px;
    width: 28px; height: 28px;
  }
}

/* --- MICRO INTERACTIONS FOR BUTTONS --- */
.cta-primary:active, .cta-secondary:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.98);
  filter: brightness(0.97);
}

/* --- Z-INDEX LAYERS --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { z-index: 800; }
.cookie-modal, .cookie-modal-backdrop { z-index: 9999; }

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