/* === 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, 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, 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 {
  height: 100%;
}
body {
  height: 100%;
  background: #fff;
  color: #191919;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
strong {
  font-weight: 600;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
}
:focus {
  outline: 2px solid #15395B;
  outline-offset: 2px;
}

/* === BRAND TYPOGRAPHY & COLORS === */
:root {
  --color-primary: #191919;
  --color-secondary: #F7F7F8;
  --color-accent: #ffffff;
  --color-highlight: #15395B;
  --color-accent-light: #F2F6FB;
  --color-gray1: #333333;
  --color-gray2: #6E6E73;
  --color-gray3: #B0B0B8;
  --brand-blue: #15395B;
  --brand-water: #6EB7C8;
  --brand-bg: #FFFFFF;
  --brand-light-bg: #F2F6FB;
  --shadow-color: rgba(21, 57, 91, 0.06);
  --border-radius: 20px;
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 400 700;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #191919;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.22;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, .subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 18px;
  max-width: 65ch;
}
.subheadline {
  font-size: 1.2rem;
  color: #6E6E73;
  font-weight: 400;
  margin-bottom: 28px;
}

/******************************/
/*   LAYOUT CONTAINERS       */
/******************************/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent-light);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px 0 var(--shadow-color);
}

/******************************/
/*  HEADER & NAVIGATION      */
/******************************/
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 24px 0 var(--shadow-color);
  z-index: 11;
  position: relative;
}
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
  border-bottom: 1.5px solid #ededed;
}
.logo-container {
  margin-right: 34px;
  flex-shrink: 0;
}
.logo-container img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
}
nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #191919;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background .16s, color .16s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: #191919;
  color: #fff;
}
.cta-button {
  margin-left: 28px;
  background: #191919;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.1rem;
  padding: 12px 28px;
  letter-spacing: 0.015em;
  border: none;
  box-shadow: 0 4px 16px 0 var(--shadow-color);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.cta-button.secondary {
  background: #fff;
  color: #191919;
  border: 2px solid #191919;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-water);
  color: #191919;
  box-shadow: 0 2px 24px 0 var(--shadow-color);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #191919;
  color: #fff;
}


/******************************/
/*   MOBILE MENU BURGER      */
/******************************/
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 22px;
  background: #191919;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  display: none;
  z-index: 120;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px 0 var(--shadow-color);
  border: 2px solid #191919;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #fff;
  color: #191919;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 24, 24, 0.96);
  color: #fff;
  padding: 0;
  z-index: 130;
  transition: transform 0.35s cubic-bezier(0.8, 0, 0.2, 1);
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 24px 0 0;
  font-size: 2rem;
  background: none;
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #191919;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 52px 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.23rem;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 8px;
  transition: color 0.14s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #191919;
  background: #fff;
  padding-left: 16px;
}

/******************************/
/*   MAIN CONTENT LAYOUT     */
/******************************/
main {
  min-height: 60vh;
  width: 100%;
  position: relative;
  background: #fff;
  z-index: 1;
}

section {
  width: 100%;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: transparent;
}

/******************************/
/*   FLEXBOX UTILITY CLASSES */
/******************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px 0 var(--shadow-color);
  padding: 32px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 var(--shadow-color);
  transform: translateY(-4px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 4px 18px 0 var(--shadow-color);
  border-radius: 14px;
  min-width: 280px;
  max-width: 530px;
}
.testimonial-person {
  font-size: 1rem;
  color: #191919;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
}
.stars {
  color: #191919;
  font-size: 1.15rem;
  letter-spacing: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

/******************************/
/*   HOMEPAGE MODULES        */
/******************************/
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}
.feature-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--shadow-color);
  padding: 24px 20px;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.07rem;
  color: #333;
  transition: box-shadow .19s, transform .18s;
}
.feature-list li img {
  height: 34px;
  margin-right: 4px;
}
.feature-list li:hover {
  box-shadow: 0 5px 32px var(--shadow-color);
  transform: translateY(-3px) scale(1.011);
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.services-list li,
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--shadow-color);
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.07rem;
  color: #191919;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.services-list li:hover,
.service-card:hover {
  box-shadow: 0 7px 32px var(--shadow-color);
  transform: translateY(-2px) scale(1.012);
}
.price, .pricing-info {
  color: #15395B;
  font-weight: bold;
  font-size: 1.12rem;
  margin-top: 4px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 26px;
  border-radius: 13px;
  box-shadow: 0 1px 8px var(--shadow-color);
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #ececec;
  text-align: left;
}
.pricing-table th {
  background: #191919;
  color: #fff;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.price-box {
  background: #fff;
  color: #15395B;
  font-weight: 700;
  font-size: 1.22rem;
  padding: 18px 26px;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px var(--shadow-color);
  margin-bottom: 14px;
}
.customization-options, .pricing-info {
  margin-top: 14px;
  font-size: 1.08rem;
  color: #333;
}

/******************************/
/*   CARDS, CTA & BANNERS     */
/******************************/
.cta-banner {
  background: #191919;
  color: #fff;
  padding: 40px 28px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px 0 var(--shadow-color);
  text-align: center;
  align-items: center;
  gap: 17px;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner p {
  color: #ececec;
}

/******************************/
/*   TESTIMONIAL MODS        */
/******************************/
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 var(--shadow-color);
  color: #191919;
  min-width: 240px;
  max-width: 470px;
  flex: 1;
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  color: #242424;
  margin-bottom: 12px;
}

/******************************/
/*   FOOTER                  */
/******************************/
footer {
  width: 100%;
  background: #191919;
  color: #ececec;
  padding: 44px 0 12px 0;
  border-top: 1.5px solid #eee;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
.footer-brand {
  flex: 0 0 130px;
  align-self: flex-start;
}
.footer-brand img {
  width: 80px;
  height: auto;
}
.footer-contact {
  flex: 1 1 200px;
  min-width: 180px;
  font-size: 1.02rem;
}
.footer-contact a {
  color: #6EB7C8;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 1 190px;
  font-size: 1.05rem;
}
.footer-menu a {
  color: #ececec;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 6px 0;
  border-radius: 5px;
  transition: color .16s, background .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #191919;
  background: #F2F6FB;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  opacity: 0.9;
  transition: opacity 0.14s, filter 0.14s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0);
  opacity: 1;
}

/******************************/
/*   CONTENT MODIFIERS       */
/******************************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.team-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 16px var(--shadow-color);
  padding: 20px 18px;
  min-width: 220px;
  font-size: 1.07rem;
  transition: box-shadow 0.17s, transform 0.16s;
}
.team-list li:hover {
  box-shadow: 0 8px 28px var(--shadow-color);
  transform: translateY(-3px) scale(1.011);
}
.faq-accordion h3 {
  cursor: pointer;
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 1.05rem;
  color: #15395B;
}
.faq-accordion h3.open {
  color: #191919;
}
.faq-accordion p {
  margin-bottom: 10px;
}

.contact-info {
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #191919;
}

/******************************/
/*   COOKIE CONSENT BANNER   */
/******************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #191919;
  color: #fff;
  font-size: 1.11rem;
  padding: 24px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -2px 30px 0 var(--shadow-color);
  border-radius: 22px 22px 0 0;
  align-items: center;
  animation: cookieIn 0.45s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookieIn {
  from { transform: translateY(130%)}
  to { transform: translateY(0);}
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  margin-top: 2px;
}
.cookie-banner .cookie-btn {
  background: #ededed;
  color: #191919;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border: 1.5px solid #fff;
  transition: background .16s, color .15s;
  margin: 0;
  min-width: 114px;
}
.cookie-banner .cookie-btn.primary {
  background: #15395B;
  color: #fff;
  border: 2px solid #15395B;
}
.cookie-banner .cookie-btn.secondary {
  background: #fff;
  color: #191919;
  border: 2px solid #191919;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #191919;
  color: #fff;
}
.cookie-banner .cookie-btn.primary:hover, .cookie-banner .cookie-btn.primary:focus {
  background: #6EB7C8;
  color: #191919;
  border: 2px solid #6EB7C8;
}

/******************************/
/*   COOKIE MODAL            */
/******************************/
.cookie-modal-overlay {
  position: fixed;
  z-index: 210;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,30,30,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .32s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #191919;
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 6px 40px 2px var(--shadow-color);
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeUp .32s cubic-bezier(0.7,0,0.3,1);
  position: relative;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 11px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  font-size: 1.07rem;
}
.cookie-modal-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #15395B;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.39rem;
  color: #191919;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #EFEFEF;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.cookie-modal-actions .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 8px 22px;
  border: 1.2px solid #15395B;
  background: #fff;
  color: #15395B;
  transition: background .15s, color .15s, border .15s;
}
.cookie-modal-actions .cookie-btn.accept {
  background: #15395B;
  color: #fff;
}
.cookie-modal-actions .cookie-btn.accept:hover, .cookie-modal-actions .cookie-btn.accept:focus {
  background: #6EB7C8;
  color: #191919;
}
.cookie-modal-actions .cookie-btn.reject:hover, .cookie-modal-actions .cookie-btn.reject:focus {
  background: #191919;
  color: #fff;
  border: 2px solid #191919;
}

/******************************/
/*   RESPONSIVE ADJUSTMENTS  */
/******************************/
@media (max-width: 1023px) {
  h1 {
    font-size: 2.08rem;
  }
  .container {
    max-width: 92vw;
  }
  .feature-list,
  .services-list,
  .testimonial-slider,
  .testimonial-list,
  .team-list,
  .card-container {
    gap: 16px;
  }
  .footer-brand img {
    width: 60px;
  }
}

@media (max-width: 840px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 8px 0;
  }
  nav {
    gap: 13px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .footer-contact {
    font-size: 0.94rem;
  }
  .footer-menu {
    font-size: 0.98rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.38rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 11px;
  }
  nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-menu,
  .footer-social {
    flex: 0 1 100%;
    width: 100%;
    margin-top: 14px;
  }
  .content-wrapper,
  .section {
    padding: 20px 6px;
    gap: 10px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-grid, .card-container, .services-list, .feature-list, .testimonial-slider, .testimonial-list, .team-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card, .service-card, .feature-list li, .team-list li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 17px 12px;
  }
}

@media (max-width: 520px) {
  header {
    padding: 6px 0 4px 0;
  }
  .logo-container img {
    height: 32px;
  }
  .cta-button, .cta-banner {
    padding: 12px;
    font-size: 1rem;
  }
  section, .section {
    padding: 12px 3px;
  }
  .testimonial-card {
    padding: 13px 9px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 20px 5vw;
    min-width: 0;
    width: 97vw;
  }
}

/* Code ends */
