/* ===== 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;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1a1a1a;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fafbfc;
  color: #262626;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #101214;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4 { font-size: 1rem; font-weight: 600; }

p, ul, li, span {
  font-size: 1rem;
  color: #222;
  line-height: 1.65;
}
p {
  margin-bottom: 16px;
}
strong { font-weight: 700; }

/* ======= LAYOUT CONTAINERS & SECTIONS ======= */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(34, 34, 34, 0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero {
  background: #F6F8FA;
  margin-bottom: 60px;
  padding: 54px 0 44px 0;
  box-shadow: none;
}
.hero h1, .hero p {
  color: #262626;
}

/* ===== FLEXBOX LAYOUTS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(20,20,20,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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 28px 20px 28px;
  background: #f6f8fa;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(35,35,40,0.05);
  margin-bottom: 24px;
  transition: box-shadow 0.25s;
  border-left: 4px solid #2C3C54;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 0 rgba(44,60,84,0.13);
  border-left-color: #DC9725;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ======= LIST STYLES & ICON LISTS ======= */
ul {
  padding-left: 0;
  margin-bottom: 18px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #232323;
}
ul li img {
  width: 30px;
  min-width: 24px;
  height: 30px;
  margin-right: 8px;
  filter: grayscale(100%);
  opacity: 0.8;
}

.text-section ul li {
  margin-bottom: 8px;
}

/* ===== CALL TO ACTION BUTTONS ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2C3C54;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 8px;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 8px 0 rgba(22,22,24,0.08);
  margin-top: 16px;
  cursor: pointer;
}
.cta.primary {
  background: #2C3C54;
  color: #fff;
  letter-spacing: 0.5px;
  border: 1.5px solid #2C3C54;
}
.cta:hover, .cta.primary:hover {
  background: #fff;
  color: #2C3C54;
  border: 1.5px solid #2C3C54;
  box-shadow: 0 2px 10px 0 rgba(44, 60, 84, 0.16);
  text-decoration: none;
}
.cta:active {
  background: #232323;
  color: #fff;
}

/* ===== MAIN NAVIGATION STYLES ===== */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  background: #fff;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #2C3C54;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.cta {
  background: #DC9725;
  color: #fff;
  font-weight: 700;
  margin-left: 18px;
  letter-spacing: 0.4px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta.primary:hover {
  background: #fff;
  color: #DC9725;
  border: 1.5px solid #DC9725;
}
.main-nav a:hover {
  background: #f0f0f0;
  color: #2C3C54;
}

/* ======= FOOTER ======= */
footer {
  background: #2C3C54;
  color: #fff;
  padding: 38px 0 18px 0;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #f6f8fa;
  opacity: 0.96;
  font-size: 1rem;
  transition: opacity 0.18s, color 0.18s;
}
.footer-nav a:hover {
  color: #DC9725;
  opacity: 1;
}
footer p {
  font-size: 0.97rem;
  text-align: center;
  opacity: 0.92;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px; top: 18px;
  background: #2C3C54;
  color: #fff;
  font-size: 2.3rem;
  border-radius: 6px;
  width: 48px; height: 48px;
  z-index: 1041;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: #DC9725;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 60, 84, 0.98);
  z-index: 1050;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  margin: 22px 18px 10px auto;
  align-self: flex-end;
  border-radius: 6px;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover {
  background: #DC9725;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  padding: 18px 34px;
  margin-top: 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  background: none;
  padding: 12px 10px;
  border-radius: 7px;
  width: 100%;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DC9725;
  color: #fff;
}

/* ===== COOKIES BANNER ===== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #232323;
  color: #FFF;
  padding: 24px 20px 24px 20px;
  box-shadow: 0 -2px 10px rgba(15, 20, 24, 0.20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  transition: transform 0.37s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
  font-size: 1rem;
}
#cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner p {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  max-width: 420px;
}
.cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  background: #fff;
  color: #2C3C54;
  padding: 12px 26px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #DC9725;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #fff;
  color: #DC9725;
  box-shadow: 0 2px 6px 0 rgba(220,151,37,0.13);
}
.cookie-btn.reject {
  background: #fff;
  color: #2C3C54;
}
.cookie-btn.reject:hover {
  background: #2C3C54;
  color: #fff;
}
.cookie-btn.settings {
  background: none;
  color: #f6f8fa;
  border: 1px solid #fff;
}
.cookie-btn.settings:hover {
  background: #fff;
  color: #232323;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1090;
  background: rgba(44,60,84,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.2s;
}
#cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #222;
  border-radius: 16px;
  padding: 38px 26px 28px 26px;
  box-shadow: 0 8px 50px 0 rgba(40,52,69,0.24);
  width: 96vw;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2C3C54;
  cursor: pointer;
  padding: 0;
}
.cookie-modal-close:hover {
  color: #DC9725;
}
.cookie-modal-content h2 {
  margin-bottom: 12px;
  font-size: 1.36rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  border-radius: 32px;
  background: #dedede;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-switch input {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  top: 2px; left: 2px;
  background: #DC9725;
  width: 18px; height: 18px;
  border-radius: 50%;
  transition: left 0.22s cubic-bezier(0.4,0,0.2,1), background 0.18s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 20px;
  background: #2C3C54;
}
.cookie-category.disabled .cookie-switch {
  background: #cfd7de;
  cursor: not-allowed;
}
.cookie-category.disabled label {
  color: #bebebe;
}

/* ======= UTILITIES ======= */
.hide {
  display: none !important;
}

/* ======= SPACING & WHITE SPACE ======= */
@media (min-width: 992px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .content-wrapper {
    gap: 38px;
  }
  section {
    padding: 58px 44px 54px 44px;
    border-radius: 18px;
  }
  .hero {
    padding: 84px 0 64px 0;
    border-radius: 22px;
  }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.13rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  section {
    margin-bottom: 42px;
    padding: 28px 7px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .testimonial-card {
    padding: 16px 11px 16px 18px;
    font-size: 0.98rem;
  }
  .footer-nav {
    gap: 10px;
    flex-direction: column;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .hero {
    padding: 32px 0 24px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

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

/* ====== VISUAL HIERARCHY & ACCENT ====== */
h1, h2 {
  border-left: 6px solid #2C3C54;
  padding-left: 18px;
  background: none;
}
.hero h1, .hero h2 {
  border-left-color: #DC9725;
}
hr {
  border: none;
  border-top: 1.5px solid #e5e7eb;
  margin: 38px 0;
}

/* ======= FORM (if present) ======= */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
}
input, textarea {
  width: 100%;
  padding: 12px 13px;
  background: #f6f8fa;
  color: #232323;
  border: 1.5px solid #d4dae1;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.16s;
}
input:focus, textarea:focus {
  border: 1.5px solid #DC9725;
  outline: none;
}
label {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ======= CARD DESIGN ======= */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(52,52,52,0.09);
  padding: 28px 19px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 7px 24px 0 rgba(44, 60, 84, 0.11);
}

/* ======= MICROINTERACTIONS & TRANSITIONS ======= */
a, button, .cta, .main-nav a, .mobile-menu-toggle {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

/* ======= FOCUS STATES ======= */
a:focus, button:focus, .cta:focus, .main-nav a:focus {
  outline: 2px solid #DC9725;
  outline-offset: 2px;
}

/* ======= MONOCHROME SPECIAL EFFECTS ======= */
section, .card, .testimonial-card {
  border: 1.5px solid #edeff1;
}

/* ===== ACCESSIBILITY & CONTRAST IN TESTIMONIALS ===== */
.testimonial-card {
  background: #f6f8fa;
  color: #232323;
}
.testimonial-card p {
  color: #232323;
  font-style: italic;
  font-size: 1.06rem;
}
.testimonial-card span {
  color: #2C3C54;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== CUSTOM CLASSES USED BY HTML STRUCTURE ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 12px;
}

/* ===== SPECIAL ELEGANT ACCENTS ===== */
h1, h2 {
  border-radius: 6px 0 0 6px;
}

/***** END OF STYLES *****/
