/* CSS RESET & BASE STYLES */
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;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #273144;
  background: #FFF;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #273144;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #F3C808;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li+li {
  margin-top: 8px;
}
strong, b {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273144;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
  max-width: 730px;
  font-size: 1.08rem;
  color: #2C3750;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/**** LOGO ******/
header img,
footer img {
  height: 46px;
  width: auto;
}
/* HEADER & NAV */
header {
  background: #fff;
  position: sticky;
  top: 0; left: 0;right: 0;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(39,49,68,0.05);
}
.main-navigation {
  width: 100%;
  padding: 0 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.main-navigation ul {
  list-style: none;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 0 34px;
}
.main-navigation li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 4px 8px 4px;
  border-radius: 5px;
  line-height: 1.1;
  transition: background 0.16s, color 0.16s;
}
.main-navigation li a:hover,
.main-navigation li a:focus {
  background: #F3C80822;
  color: #F3C808;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #F3C808;
  color: #273144;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.12rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 34px;
  cursor: pointer;
  margin-left: 24px;
  box-shadow: 0 4px 14px rgba(39,49,68,.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  text-transform: uppercase;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #273144;
  color: #fff;
  box-shadow: 0 8px 28px rgba(39,49,68,.19);
  transform: translateY(-2px) scale(1.02);
}

/*********** MOBILE NAV **************/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F3C808;
  color: #273144;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 70;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(39,49,68,.11);
  transition: background .18s, color .18s, transform .16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #273144;
  color: #FFFFFE;
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(39,49,68,0.96);
  transform: translateX(100vw);
  transition: transform 0.42s cubic-bezier(.61,.13,.41,1.07);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #F3C808;
  color: #273144;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  margin: 20px 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .16s, color .16s;
  box-shadow: 0 2px 12px rgba(243,200,8,.14);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #273144;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 30px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.45rem;
  background: transparent;
  border-radius: 6px;
  padding: 16px 10px;
  transition: background .14s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3C808;
  color: #273144;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

/************ RESPONSIVE NAV ************/
@media (max-width: 1023px) {
  .main-navigation ul, .main-navigation .cta-btn {
    display: none;
  }
}
.main-navigation img {
  margin-right: 8px;
}

/*********** HERO SECTION *************/
.hero {
  background: linear-gradient(128deg, #fff 75%, #F3C80822 100%);
  min-height: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 60px 0 0 0;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero {
    min-height: 130px;
    padding: 38px 0 0 0;
  }
}

/******** FEATURE & SERVICE LISTS ********/
.feature-list, .service-list {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-list li, .service-list li {
  flex: 1 1 310px;
  background: #fff;
  padding: 26px 24px 22px 24px;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(39,49,68,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
  border: 2px solid #F3C80800;
  position: relative;
}
.feature-list li img {
  height: 38px;
  width: 38px;
  margin-bottom: 10px;
}
.feature-list li:hover, .service-list li:hover {
  box-shadow: 0 14px 36px 0 rgba(39,49,68,0.17);
  transform: translateY(-4px) scale(1.015);
  border-color: #F3C808;
  z-index: 1;
}
.service-list li strong {
  color: #F3C808;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
  font-weight: bold;
}

@media (max-width: 900px) {
  .feature-list, .service-list {
    gap: 20px;
  }
  .feature-list li, .service-list li {
    flex: 1 1 90%;
    min-width: 180px;
    padding: 22px 13px;
  }
}
@media (max-width: 600px) {
  .feature-list, .service-list {
    flex-direction: column;
    gap: 18px;
  }
}

/*********** TESTIMONIALS *************/
.testimonials {
  background: #f8fafd;
  padding: 60px 0 42px 0;
}
.testimonial-card {
  background: #fff;
  color: #273144;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 6px 26px 0 rgba(39,49,68,0.11);
  font-size: 1.11rem;
  max-width: 690px;
  transition: box-shadow .18s, scale 0.16s;
  border-left: 5px solid #F3C808;
}
.testimonial-card p {
  color: #2C3750;
  margin: 0 0 0 0;
  flex: 1 1 auto;
  font-weight: 600;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #9CA2B1;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 16px 36px 0 rgba(39,49,68,0.21);
  scale: 1.01;
}

/******* CONTACT/LOCATION CARDS ******/
.contact-details ul,
.location ul{
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-details li,
.location li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.07rem;
  color: #2C3750;
}
.contact-details img, .location img {
  width: 26px; height: 26px;
  margin-right: 2px;
}
.text-section {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.005rem;
  margin-top: 6px;
  color: #273144;
}

/******** CTA SECTION ************/
.cta {
  background: #F3C808;
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 42px 0;
  box-shadow: 0 8px 34px rgba(243,200,8,0.08);
  display: flex;
  align-items: center;
}
.cta .container {
  align-items: flex-start;
}
.cta h2, .cta p {
  color: #273144;
}
.cta .cta-btn {
  margin-top: 10px;
  font-size: 1.15rem;
}

/******* CARDS & GRIDS **********/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 5px 28px 0 rgba(39,49,68,0.08);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.19s, box-shadow 0.13s;
}
.card:hover {
  box-shadow: 0 13px 44px 0 rgba(243,200,8,0.19);
  transform: scale(1.03);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****** FOOTER *******/
footer {
  background: #273144;
  color: #FFFFFF;
  padding: 40px 0 0 0;
  margin-top: 60px;
}
footer .container {
  align-items: center;
}
footer .content-wrapper {
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 18px 0 0 0;
}
.footer-menu a {
  color: #F3C808;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  padding: 4px 0 4px 0;
  border-radius: 3px;
  font-weight: 700;
  transition: color .15s, background .13s;
}
.footer-menu a:hover {
  color: #273144;
  background: #F3C808;
}
footer p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.08rem;
}
footer img {
  height: 46px;
  margin-bottom: 6px;
}

/********* PRIVACY & POLICY PAGES ********/
.privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use {
  background: #fff;
  border-radius: 24px;
  margin: 54px 0 60px 0;
  padding: 60px 20px 48px 20px;
  box-shadow: 0 4px 32px rgba(39,49,68,0.06);
}

/********* THANK YOU PAGE *********/
.thank-you {
  background: #F3C808;
  border-radius: 24px;
  margin: 54px 0 60px 0;
  padding: 60px 20px 48px 20px;
  box-shadow: 0 5px 26px rgba(243,200,8,0.11);
  text-align: left;
}
.thank-you h1, .thank-you p {
  color: #273144;
}

/********* COOKIE CONSENT BANNER *********/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #273144;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  z-index: 1200;
  padding: 28px 16px 22px 16px;
  animation: cookieBannerSlideIn 0.56s ease;
  box-shadow: 0 -8px 26px 2px rgba(39,49,68,0.13);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.03rem;
  line-height: 1.45;
  margin: 0 12px 0 0;
  flex: 1 1 auto;
  max-width: 720px;
}
.cookie-banner .cookie-btn {
  background: #F3C808;
  color: #273144;
  border: none;
  border-radius: 26px;
  padding: 10px 26px;
  margin-left: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.14s;
  box-shadow: 0 2px 8px 1px rgba(243,200,8,0.15);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFF;
  color: #273144;
}
.cookie-banner .cookie-settings-btn {
  border: 2px solid #F3C808;
  background: transparent;
  color: #F3C808;
  font-weight: 700;
  margin-left: 7px;
  transition: background .18s, color .18s, border .12s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #F3C80811;
}

/********* COOKIE MODAL (PREFERENCES) *********/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,49,68,.72);
  z-index: 1333;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: cookieModalFade .48s;
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #273144;
  padding: 44px 28px 32px 28px;
  border-radius: 20px;
  min-width: 340px;
  max-width: 95vw;
  box-shadow: 0 13px 64px 0 rgba(243,200,8,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  z-index: 1334;
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: #273144;
  font-weight: 800;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-category input[type=checkbox] {
  accent-color: #F3C808;
  width: 22px; height: 22px;
  border-radius: 5px;
  margin-right: 4px;
  border: 2px solid #F3C808;
  transition: border-color .16s;
}
.cookie-category input[type=checkbox][disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.cookie-modal .cookie-btn {
  margin-right: 12px;
}
.cookie-modal-close {
  background: #F3C808;
  color: #273144;
  position: absolute;
  top: 16px; right: 18px;
  border: none;
  border-radius: 8px;
  width: 38px; height: 38px;
  font-size: 1.32rem;
  cursor: pointer;
  box-shadow: 0 2px 6px #F3C80844;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #273144;
  color: #F3C808;
}

/***** FLEX HELPERS FROM REQUIREMENTS *****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/********* RESPONSIVE DESIGN *********/
@media (max-width: 1024px) {
  .main-navigation {
    padding: 0 10px;
    gap: 18px;
  }
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  .cta { padding: 29px 0; }
  .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use, .thank-you {
    margin: 29px 0 36px 0;
    padding: 32px 10px 24px 10px;
  }
}
@media (max-width: 768px) {
  .main-navigation {
    min-height: 54px;
  }
  .section, .cta {
    padding: 28px 5px;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  h1 {
    font-size: 1.36rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.06rem;
    margin-bottom: 12px;
  }
  h3 {
    font-size: 1rem;
    margin-bottom: 7px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .footer-menu {
    gap: 9px;
  }
  .thank-you, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use {
    padding: 18px 4px;
    margin: 18px 0 20px 0;
    border-radius: 9px;
  }
  .hero {
    min-height: 40px;
    padding: 17px 0 0 0;
    border-radius: 9px;
  }
  .feature-list, .service-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/******** SCROLLBAR STYLING *********/
::-webkit-scrollbar {
  width: 10px;
  background: #F3C80811;
}
::-webkit-scrollbar-thumb {
  background: #F3C80877;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F3C808;
}

/********** PREVENT OVERLAPPING ***********/
.card, .feature-list li, .service-list li, .testimonial-card {
  margin-bottom: 20px;
}
.feature-list li + li, .service-list li + li {
  margin-top: 0px;
}

/******* GEOMETRIC/DECORATIVE ELEMENTS ******/
.section::after {
  content: "";
  display: block;
  width: 70px; height: 5px;
  background: #F3C808;
  border-radius: 16px;
  margin: 18px 0 0 0;
  opacity: 0.18;
}
@media (max-width: 768px) {
  .section::after {
    width: 36px;
    height: 3px;
    margin: 9px 0 0 0;
  }
}

/*********** FOCUS VISIBLE FOR A11Y ***********/
:focus-visible {
  outline: 2px dotted #F3C808;
  outline-offset: 2px;
}

/************ FONT FACE ************/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
