/* 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, 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  line-height: 1.5;
  background: #F4F4F4;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
a {
  color: #36558F;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #B35E00;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #36558F;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.15rem; }
}

p, .text-section p, .content-wrapper p {
  margin-bottom: 14px;
  color: #364150;
  font-size: 1rem;
}

strong { font-weight: 700; }

body, html {
  background: #F4F4F4;
}

/* BRAND COLORS */
:root {
  --color-primary: #36558F;
  --color-secondary: #FFFFFF;
  --color-bg: #F4F4F4;
  --color-accent: #B35E00;
  --color-accent-2: #F18F01;
  --color-grey: #EAEEF4;
  --color-base-text: #222;
  --color-card-bg: #FFFFFF;
  --color-card-bg-alt: #F8FAFF;
  --color-shadow: rgba(54,85,143,0.08);
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* GRADIENT BACKGROUNDS */
.hero, .cta, .mobile-menu {
  background: linear-gradient(90deg, #36558F 0%, #F18F01 100%);
  color: #fff;
}
.feature-item img, .service-item img {
  filter: drop-shadow(0 4px 14px rgba(54,85,143,0.07));
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #EAEEF4;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  min-height: 70px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #36558F;
  opacity: 0.88;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #B35E00;
  border-bottom: 2px solid #B35E00;
}
header a.cta-primary {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
}

/* MAIN CTA BUTTON */
.cta-primary {
  background: linear-gradient(90deg, #F18F01 10%, #36558F 80%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  padding: 13px 36px;
  border-radius: 34px;
  box-shadow: 0 2px 14px 0 rgba(54,85,143,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
  outline: none;
  letter-spacing: 0.01em;
  margin-top: 12px;
  text-align: center;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.cta-primary:active {
  transform: scale(0.97);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #36558F 0%, #B35E00 100%);
  box-shadow: 0 8px 24px rgba(54, 85, 143, 0.16);
}

/* HERO SECTION */
.hero {
  padding: 84px 0 54px 0;
  margin-bottom: 60px;
  color: #fff;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  max-width: 740px;
}
.hero h1, .hero h2, .hero p {
  color: #fff;
}

/* GENERAL SECTION SPACING */
.section, .services, .features, .about, .cta, .testimonials, .thank-you-confirmation, .privacy-policy, .rodo-info, .terms-conditions, .cookies-policy, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUTS */
.features .feature-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 20px 28px;
  margin-bottom: 20px;
  min-width: 210px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  flex: 1 1 250px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px #CFDDF9;
  transform: translateY(-4px) scale(1.02);
}
.feature-item img {
  height: 36px;
  width: auto;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* SERVICES FLEX */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 100%;
  padding: 28px 23px 18px 23px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-item:hover {
  box-shadow: 0 8px 32px #CFDDF9;
  transform: translateY(-4px) scale(1.02);
}
.service-item img {
  width: 34px;
  height: auto;
  margin-bottom: 6px;
  margin-top: 2px;
}
.service-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.07rem;
  font-weight: 700;
}
.service-item p {
  font-size: 0.97rem;
  color: #364150;
}
.service-item .price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.04rem;
  margin-top: 7px;
}

/* CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 24px;
}

/* CONTENT GRID */
.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;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.19s;
  border-left: 6px solid #36558F;
  max-width: 640px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px #CFDDF9;
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card blockquote {
  color: #2B3552;
  font-size: 1.15rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  border: none;
  margin: 0 0 8px 0;
}
.testimonial-meta {
  color: #7B748C;
  font-size: 0.97rem;
  font-weight: 600;
  margin-left: 10px;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(90deg, #36558F 0%, #F18F01 100%);
  color: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 36px 18px;
  text-align: left;
  box-shadow: 0 0 30px 6px rgba(54,85,143,0.08);
}
.cta .content-wrapper {
  color: #fff;
  align-items: flex-start;
  gap: 12px;
}
.cta h2, .cta p {
  color: #fff;
}

/* ABOUT, TEXT SECTIONS */
.about .text-section, .privacy-policy .text-section, .rodo-info .text-section, .terms-conditions .text-section, .cookies-policy .text-section, .thank-you-confirmation .text-section, .contact .content-wrapper {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px 22px 24px;
  margin-bottom: 22px;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.about .content-wrapper > h2, .privacy-policy h1, .rodo-info h1, .terms-conditions h1, .cookies-policy h1, .thank-you-confirmation h1, .contact h2 {
  margin-top: 0;
  color: #36558F;
}

/* CONTACT DETAILS */
.contact-details {
  list-style: none;
  margin-bottom: 18px;
}
.contact-details li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #364150;
}
.contact-form-section {
  margin-top: 26px;
  padding-top: 8px;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #EAEEF4;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 38px 20px 30px 20px;
}
.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  font-size: 1rem;
  color: #36558F;
  opacity: 0.75;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.20s, border-color 0.20s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B35E00;
  border-bottom: 1.5px solid #B35E00;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96rem;
  color: #AAB6C4;
  opacity: 0.95;
}
.footer-branding img {
  height: 32px;
  width: auto;
}

/* TABLES, MODALS, etc. */
table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 8px 14px;
  text-align: left;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: linear-gradient(90deg, #F18F01 40%, #36558F 100%);
  color: #fff;
  font-size: 2rem;
  padding: 6px 18px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  margin-left: 8px;
  transition: background 0.17s;
  z-index: 105;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #36558F;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #36558F 0%, #F18F01 100%);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 0.97;
  box-shadow: 0 8px 48px #2224;
  overflow-y: auto;
  padding-top: 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 10px 0 18px 40px;
  cursor: pointer;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 50%;
  transition: background 0.12s;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FAE9DA;
  color: #B35E00;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  padding: 0 0 80px 40px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 12px 11px 7px;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
  margin-right: 30px;
  min-width: 120px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff2e6;
  color: #B35E00;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1025px) {
  .container { max-width: 1000px; }
  .feature-item, .service-item { min-width: 190px; padding: 23px 16px; }
}
@media (max-width: 900px) {
  .container { max-width: 720px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-height: 60px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-primary {
    padding: 11px 22px;
    font-size: 1rem;
    margin-left: 5px;
  }
  .container {
    padding: 0 8px;
  }
  .features .feature-grid, .feature-grid, .services .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    align-items: flex-start;
  }
  .about .text-section, .privacy-policy .text-section, .rodo-info .text-section, .terms-conditions .text-section, .cookies-policy .text-section, .thank-you-confirmation .text-section, .contact .content-wrapper {
    padding: 18px 8px;
    font-size: 0.99rem;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .hero {
    padding: 58px 0 34px 0;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 13px 12px;
  }
  .cta {
    padding: 25px 8px;
  }
  .section, .services, .features, .about, .cta, .testimonials, .thank-you-confirmation, .privacy-policy, .rodo-info, .terms-conditions, .cookies-policy, .contact {
    padding: 26px 8px;
    margin-bottom: 43px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  body { background: #F4F4F4; }
  h1 { font-size: 1.55rem; }
}

/* SPACING SEPARATORS */
.section, .services, .features, .about, .cta, .testimonials, .thank-you-confirmation, .privacy-policy, .rodo-info, .terms-conditions, .cookies-policy, .contact {
  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; }

/* MICRO-INTERACTIONS */
button, .cta-primary, .service-item, .feature-item, .testimonial-card, .footer-nav a, header nav a, .mobile-menu-toggle, .mobile-nav a {
  transition: box-shadow 0.18s, background 0.14s, color 0.13s, border-color 0.17s, transform 0.13s, opacity 0.15s;
}
button:focus, a:focus, .cta-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px #36558F2A;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 30px #24376120;
  z-index: 2222;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 28px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  opacity: 0.98;
}
.cookie-banner__message {
  flex: 1 1 55%;
  color: #2B3552;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: linear-gradient(90deg, #F18F01 15%, #36558F 80%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 19px;
  padding: 8px 22px;
  margin-right: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.14s, transform 0.11s;
}
.cookie-btn.settings {
  background: #F4F4F4;
  color: #36558F;
  border: 1.5px solid #E2DFD3;
  font-weight: 500;
}
.cookie-btn:active {
  transform: scale(0.96);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: linear-gradient(90deg, #36558F 0%, #B35E00 100%);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E6E9F5;
  color: #36558F;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 16px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%) scale(1);
  background: #fff;
  box-shadow: 0 8px 40px #2225;
  z-index: 2333;
  border-radius: 20px;
  padding: 42px 30px 30px 30px;
  min-width: 312px;
  min-height: 110px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  transition: opacity 0.21s, transform 0.21s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -65%) scale(0.93);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #36558F;
  margin-bottom: 13px;
}
.cookie-modal .categories label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 10px;
  cursor: pointer;
  gap: 10px;
}
.cookie-modal .categories input[type='checkbox'] {
  accent-color: #36558F;
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.cookie-modal .categories .desc {
  font-size: 0.95rem;
  color: #757c97;
  margin-bottom: 8px;
  margin-left: 28px;
}
.cookie-modal .cookie-actions {
  margin-top: 22px;
  display: flex;
  gap: 11px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 18px;
  background: #F18F01;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  z-index: 2345;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #36558F;
  color: #FFE2C7;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    max-width: 97vw;
    padding: 18px 7px 7px 14px;
  }
  .cookie-modal h2 { font-size: 1.09rem; }
}

/* THANK YOU PAGE */
.thank-you-confirmation .content-wrapper {
  align-items: flex-start;
}
.thank-you-confirmation .cta-primary {
  margin-top: 16px;
}

/* OTHER UTILITY CLASSES */
.mt-2 { margin-top: 2px; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.ml-4 { margin-left: 4px; }
.ml-16 { margin-left: 16px; }
.text-center { text-align: center; }

/* PRINT (OPTIONAL) */
@media print {
  header, nav, .cta, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  body { background: #fff; }
  footer { color: #888; }
}

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

/* END OF CSS */
