/* CSS RESET & NORMALIZATION */
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, menu, 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, 
main, 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background-color: #F5F5F5;
  color: #232B34;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #232B34;
  text-decoration: none;
  transition: color 0.2s;
}
strong {
  font-weight: bold;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

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

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
p, address, li, blockquote, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* LINKS */
a:hover, a:focus {
  color: #F6C85F;
  text-decoration: underline;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

/* SECTIONS & SPACING PATTERNS */
section {
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(35, 43, 52, 0.09);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(35,43,52,0.09);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  padding: 28px 22px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(35,43,52,0.15);
  z-index: 1;
}

.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;
  background: #fff;
  padding: 20px 28px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(35,43,52,0.08);
  transition: box-shadow .18s, transform .18s;
  position: relative;
  border-left: 5px solid #F6C85F;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(35,43,52,0.13);
  transform: translateY(-3px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #232B34;
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35,43,52,0.07);
  font-size: 1rem;
  font-weight: 500;
  min-width: 180px;
  transition: box-shadow .2s, background .2s;
}
.feature-grid li img {
  width: 32px;
  height: 32px;
}
.feature-grid li:hover {
  background: #F6C85F;
  color: #232B34;
  box-shadow: 0 6px 24px rgba(246, 200, 95, 0.18);
}

/* HERO SECTION */
.hero {
  min-height: 350px;
  background: linear-gradient(98deg, #F6C85F 0%, #F5F5F5 100%);
  position: relative;
  display: flex;
  align-items: center;
}
.hero .container {
  width: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 {
  color: #232B34;
  font-size: 2.7rem;
}
.hero p {
  color: #232B34;
  font-size: 1.18rem;
  font-weight: 500;
}

/* MAIN NAVIGATION (DESKTOP) */
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 1px 10px rgba(35,43,52,0.04);
  position: relative;
  z-index: 20;
}
.main-navigation .logo img {
  height: 54px;
}
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.desktop-menu a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #232B34;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.desktop-menu a:hover,
.desktop-menu a.active {
  background: #F6C85F;
  color: #232B34;
}
.cta-btn {
  display: inline-block;
  background: #232B34;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 32px;
  border-radius: 30px;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(35,43,52,0.09);
  margin-left: 16px;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F6C85F;
  color: #232B34;
  box-shadow: 0 6px 24px rgba(246, 200, 95, 0.19);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: #232B34;
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 44;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F6C85F;
  color: #232B34;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232B34;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.29s cubic-bezier(.65,.05,.36,1);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0.98;
  box-shadow: 0 2px 32px rgba(35, 43, 52, 0.38);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  margin: 22px 0 14px 24px;
  align-self: flex-start;
  z-index: 100;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #F6C85F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 4px;
  border-radius: 10px;
  transition: color .18s, background .18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #F6C85F;
  color: #232B34;
}

/* Hide Desktop Nav on Mobile, Show Burger */
@media (max-width: 980px) {
  .desktop-menu,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* GENERAL BUTTON STYLES */
button,
.cta-btn {
  cursor: pointer;
  outline: none;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #F6C85F;
}

/* FOOTER */
footer {
  background: #232B34;
  color: #fff;
  padding: 44px 0 16px 0;
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-navigation a {
  color: #F6C85F;
  font-size: 1rem;
  transition: color .18s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.footer-navigation a:hover{
  color: #fff;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links img {
  height: 28px;
  width: 28px;
  opacity: 0.92;
  transition: opacity .16s, filter .18s;
}
.social-links a:hover img { 
  opacity: 1;
  filter: brightness(1.15) drop-shadow(0 2px 8px #F6C85F80);
}
.copyright {
  color: #dee1e6;
  font-size: 0.99rem;
  opacity: 0.8;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(94deg, #F6C85F 0%, #F5F5F5 100%);
  padding: 44px 0 44px 0;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(35, 43, 52, 0.06);
  margin-bottom: 60px;
}
.testimonials h2 {
  margin-bottom: 18px;
  color: #232B34;
  font-size: 2rem;
}
.testimonial-card p, .testimonial-card blockquote {
  color: #232B34;
  font-size: 1.10rem;
  font-weight: 500;
  margin-bottom: 0;
  font-style: normal;
}
.testimonial-details, .expert-quote {
  color: #232B34;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 600;
}
.stars {
  color: #F6C85F;
  font-size: 1.14rem;
  letter-spacing: 0.12em;
}

/* SERVICE & FEATURES SECTIONS */
.services ul, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.services ul li, .features ul li {
  font-size: 1rem;
  background: #fff;
  padding: 14px 20px;
  border-radius: 15px;
  box-shadow: 0 1px 8px rgba(35,43,52,0.06);
  margin-bottom: 12px;
  min-width: 190px;
  color: #232B34;
  transition: box-shadow .18s;
  font-weight: 500;
  line-height: 1.5;
}
.services ul li span {
  color: #F6C85F;
  margin-left: 7px;
  font-weight: 600;
}
.services ul li:hover, .features ul li:hover {
  box-shadow: 0 6px 18px rgba(246, 200, 95, 0.13);
}

/* ADDRESS & CONTACT */
address {
  font-style: normal;
  color: #232B34;
  margin-bottom: 12px;
}
address strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}
address a {
  color: #232B34;
  font-weight: 600;
}
address img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  height: 20px;
  width: 20px;
}

/* LEGAL SECTION STYLES */
.legal {
  background: #fff;
  padding: 44px 0;
  margin-bottom: 46px;
  border-radius: 24px;
  box-shadow: 0 2px 13px 0 rgba(35, 43, 52, 0.06);
}
.legal h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.legal .text-section h2,
.legal .text-section h3 {
  margin-top: 22px;
  margin-bottom: 12px;
  color: #F6C85F;
}
.legal ul {
  margin-left: 14px;
  margin-bottom: 16px;
}
.legal ul li {
  list-style: disc inside;
  margin-bottom: 6px;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* THANK YOU PAGE HERO */
.hero .cta-btn {
  margin-top: 16px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 980px) {
  .section,
  .testimonials,
  .legal {
    padding: 32px 6px;
    border-radius: 18px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-navigation {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.25rem; }
  .feature-grid,
  .services ul, .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .testimonials {
    border-radius: 14px;
    padding: 22px 0;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    padding: 18px 12px;
  }
  .section {
    margin-bottom: 34px;
    padding: 26px 6px 24px 6px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  body, html {
    font-size: 15px;
  }
  .main-navigation .logo img {
    height: 40px;
  }
  .mobile-nav a {
    font-size: 1.10rem;
  }
}

/* TRANSITIONS & ANIMATIONS */
.card, .feature-grid li, .cta-btn, .testimonial-card, .services ul li, .features ul li {
  transition: box-shadow .2s, background .17s, color .17s, transform .17s;
}

/* MICRO-INTERACTIONS */
.cta-btn:active {
  transform: scale(0.97);
}
.feature-grid li:active, .services ul li:active, .features ul li:active {
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232B34;
  color: #fff;
  padding: 24px 20px 14px 20px;
  box-shadow: 0 -4px 16px rgba(35, 43, 52, 0.31);
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.29s cubic-bezier(.65,.05,.36,1), opacity 0.18s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
  color: #fff;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 9px 24px;
  border-radius: 20px;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background .18s, color .17s;
}
.cookie-btn.accept {
  background: #F6C85F;
  color: #232B34;
}
.cookie-btn.reject {
  background: #fff;
  color: #232B34;
  border: 1px solid #F6C85F;
}
.cookie-settings-btn {
  background: none;
  color: #fff;
  text-decoration: underline;
  border: none;
  padding: 0 6px;
  font-size: 1rem;
}
.cookie-btn:focus, .cookie-settings-btn:focus {
  outline: 2px solid #F6C85F;
}
.cookie-btn:hover, .cookie-btn:active {
  background: #232B34;
  color: #F6C85F;
}
.cookie-btn.reject:hover {
  color: #F6C85F;
  border-color: #232B34;
}
.cookie-settings-btn:hover {
  color: #F6C85F;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  color: #232B34;
  border-radius: 20px;
  box-shadow: 0 10px 34px rgba(35,43,52,0.22);
  transform: translate(-50%, -50%) scale(1);
  z-index: 1200;
  width: 94vw;
  max-width: 440px;
  padding: 28px 30px 22px 30px;
  opacity: 1;
  transition: opacity 0.2s, transform 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  pointer-events: none;
}
.cookie-modal h3 {
  font-size: 1.27rem;
  color: #232B34;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 17px;
}
.cookie-category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #F6C85F;
}
.cookie-category .category-label {
  font-weight: 500;
  font-size: 1.03rem;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.5rem;
  color: #232B34;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 50%;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #F6C85F;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 16px 8px 12px 8px;
    max-width: 97vw;
  }
}

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

/* VISUAL HIERARCHY: White Space & Margin resolution */
.section,
.hero,
.services,
.features,
.legal,
.testimonials {
  margin-bottom: 60px !important;
  box-sizing: border-box;
}
.card-container, .content-grid, .feature-grid,
.services ul, .features ul {
  margin-bottom: 20px !important;
}

/* PREVENT OVERLAPPING */
.card, .feature-grid li, .testimonial-card, .services ul li, .features ul li {
  margin-bottom: 20px;
}

/* NO ABSOLUTE FOR CARDS OR CONTENT!! Only for icons or modal close buttons as allowed */

