/* === CSS RESET & NORMALIZE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #253E65;
  background: #fff;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #253E65;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #222f44;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
strong, b {
  font-weight: bold;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.bg-accent {
  background: #FEF9F6;
}

/* == TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #253E65;
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 24px;
}
h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.625rem;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
.subheadline {
  font-size: 1.125rem;
  color: #4A6385;
  margin-bottom: 24px;
  font-weight: 400;
}
p {
  margin-bottom: 16px;
}

/* == BUTTONS == */
.btn,
button,
input[type="submit"] {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  padding: 0 32px;
  height: 48px;
  border-radius: 28px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: #253E65;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 62, 101, 0.07);
  margin: 8px 0;
  letter-spacing: 0.01em;
}
.btn:hover, .btn:focus,
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #192946;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 62, 101, 0.12);
}
.btn-secondary {
  background: #9AB6D2;
  color: #253E65;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #7A98B5;
  color: #253E65;
}
.btn-primary {
  background: #253E65;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #174284;
  color: #fff;
}

/* == HEADER, LOGO & NAVIGATION == */
header {
  background: #fff;
  border-bottom: 1px solid #E3EAF2;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #253E65;
  position: relative;
  padding: 4px 0;
  transition: color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #192946;
}
.main-nav a.active {
  border-bottom: 2px solid #253E65;
}
header .btn.btn-primary {
  margin-left: 16px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #253E65;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f1f3f7;
}

/* == MOBILE MENU == */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(37, 62, 101, 0.83);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.32,1.13,0.58,1);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2100;
  transition: opacity 0.2s;
  padding: 4px 10px;
  border-radius: 8px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(0,0,0,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px 32px 28px;
  box-shadow: 0 6px 32px rgba(37,62,101,0.16);
  min-width: 225px;
  margin-top: 24px;
}
.mobile-nav a {
  font-size: 1.13rem;
  font-weight: 600;
  color: #253E65;
  transition: color 0.2s;
  padding: 8px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #192946;
}

/* == HERO SECTION == */
.hero {
  padding: 48px 0 32px 0;
  background: #FEF9F6;
  border-bottom: 1px solid #E3EAF2;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 630px;
}

/* == FLEX PREFERRED PATTERNS == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(37,62,101,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 250px;
}
.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;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(37,62,101,0.04);
  margin-bottom: 24px;
  max-width: 540px;
}
.testimonial-card p {
  color: #253E65;
  font-size: 1.13rem;
  margin-bottom: 6px;
}
.testimonial-card .client {
  color: #4A6385;
  font-size: 0.98rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f6f8fa;
  border-radius: 11px;
  box-shadow: 0 1px 4px rgba(37,62,101,0.04);
  padding: 24px 20px;
  min-width: 200px;
  flex: 1 1 220px;
}
.feature-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
}
.feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.feature-grid, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-icons .feature-item {
  align-items: center;
  min-width: 140px;
  padding: 18px 12px;
  background: #fff;
}

/* == SERVICES / PRICE LIST == */
.services-list {
  margin-bottom: 32px;
}
.services-list li {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #253E65;
  background: #f9fafb;
  padding: 12px 20px 12px 18px;
  border-left: 4px solid #9AB6D2;
  border-radius: 4px;
}
.services-list strong {
  font-weight: 700;
  color: #253E65;
}
.service-details {
  list-style: none;
  margin-bottom: 32px;
}
.service-details li {
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 1px 7px rgba(37,62,101,0.07);
  padding: 24px 18px 22px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-details strong {
  font-weight: 700;
  color: #253E65;
  font-size: 1.11rem;
}
.service-details .price {
  color: #174284;
  background: #f3f6fa;
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 12px;
  font-size: 1.04rem;
}

/* == TABLE == */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 34px 0;
}
.pricing-table th, .pricing-table td {
  border: 1px solid #E3EAF2;
  padding: 14px 16px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #f6f8fa;
  color: #253E65;
  font-weight: 700;
}
.pricing-table td {
  color: #253E65;
  background: #fff;
}

/* == CONTACT & FOOTER == */
.contact,
.contact-details {
  margin-bottom: 60px;
  padding: 40px 0 24px 0;
}
.contact-info {
  list-style: none;
  margin-bottom: 20px;
}
.contact-info li {
  font-size: 1.06rem;
  margin-bottom: 8px;
  color: #253E65;
}
footer {
  background: #253E65;
  color: #fff;
  padding: 35px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 0;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #9AB6D2;
}
.footer-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid #2F497B;
  padding-top: 22px;
  font-size: 1rem;
}
.footer-details .social-links img {
  height: 35px;
  width: auto;
  margin: 0 auto;
}
.footer-details .address, .footer-details .working-hours {
  color: #9AB6D2;
  font-size: 0.96rem;
}

/* == ABOUT & POLICY SECTIONS == */
.about-us, .policy-section, .gdpr-section, .cookie-section, .terms-section, .thank-you-section {
  padding: 52px 0 32px 0;
}
.text-section {
  margin-bottom: 32px;
}
.mission-values {
  padding: 26px 18px;
  background: #FEF9F6;
  border-radius: 12px;
  margin-bottom: 32px;
}
.mission-values ul {
  list-style: disc;
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 30px;
}
.mission-values li {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

/* == FAQ PAGE == */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(37,62,101,0.06);
  padding: 30px 24px;
}
.faq-answer {
  color: #253E65;
  margin-top: 14px;
}
.extra-questions {
  padding: 40px 0;
}
.extra-questions .contact-info {
  margin-top: 16px;
}

/* == MAP PLACEHOLDER == */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 26px;
  background: #fff;
  border-radius: 10px;
  padding: 18px 0 15px 0;
  box-shadow: 0 1px 8px rgba(37,62,101,0.04);
}
.map-placeholder img {
  width: 90px;
  margin-bottom: 11px;
}
.map-placeholder p {
  font-size: 0.97rem;
  color: #4A6385;
}

/* == THANK YOU PAGE == */
.thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.thank-you-section h1 {
  color: #253E65;
  font-size: 2rem;
  margin-bottom: 14px;
}
.thank-you-section p {
  font-size: 1.09rem;
  color: #253E65;
  margin-bottom: 24px;
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #253E65;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  box-shadow: 0px -2px 18px rgba(37,62,101,0.12);
  z-index: 3000;
  font-size: 1rem;
  flex-wrap: wrap;
  gap: 16px;
  animation: bannerSlideUp 0.6s cubic-bezier(0.61,0.04,0.19,0.99);
}
@keyframes bannerSlideUp {
  0% { transform: translateY(110%); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner .btn {
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .btn-primary {
  background: #9AB6D2;
  color: #253E65;
}
.cookie-banner .btn-primary:hover, .cookie-banner .btn-primary:focus {
  background: #fff;
  color: #253E65;
}
.cookie-banner .btn-secondary {
  background: #fff;
  color: #253E65;
  border: 1px solid #9AB6D2;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #EEF3F8;
}

/* == COOKIE MODAL == */
.cookie-modal {
  position: fixed;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%) scale(0.98);
  background: #fff;
  box-shadow: 0 4px 40px rgba(37,62,101,0.19);
  border-radius: 14px;
  padding: 34px 28px;
  min-width: 330px;
  max-width: 96vw;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity 0.18s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}
.cookie-modal h3 {
  color: #253E65;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #253E65;
  font-size: 1.6rem;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #253E65;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #253E65;
  width: 21px;
  height: 21px;
}
.cookie-modal .cookie-description {
  font-size: 0.99rem;
  color: #4A6385;
  padding-bottom: 10px;
}
.cookie-modal .btn-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-nav {
    gap: 16px;
  }
  .footer-details {
    flex-direction: column;
    align-items: center;
  }
  .feature-grid, .feature-icons {
    gap: 13px;
  }
  .card-container {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 4px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }
  header .btn.btn-primary {
    display: none;
  }
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .feature-icons {
    flex-direction: column;
    gap: 18px;
  }
  .features {
    padding: 32px 0 18px 0;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 6px;
  }
  .feature-item {
    min-width: 0;
    padding: 16px 11px;
  }
  .testimonial-card {
    padding: 14px 8px;
    max-width: 98vw;
  }
  .services-list li {
    font-size: 0.98rem;
    padding: 8px 7px 8px 10px;
  }
  .policy-section, .about-us, .thank-you-section {
    padding: 26px 0 10px 0;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.96rem;
    padding: 10px 8px;
  }
  .map-placeholder p {
    font-size: 0.91rem;
    text-align: center;
  }
  .footer-menu {
    gap: 15px;
    flex-wrap: wrap;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
  .hero {
    padding: 21px 0 9px 0;
  }
  .footer-details .address, .footer-details .working-hours {
    font-size: 0.89rem;
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}
.mt-24 {
  margin-top: 24px !important;
}
.mb-24 {
  margin-bottom: 24px !important;
}

/* == SMOOTH TRANSITIONS == */
html {
  scroll-behavior: smooth;
}

/* === SHADOWS AND HIERARCHY === */
.card, .testimonial-card, .feature-item, .faq-item {
  box-shadow: 0 2px 10px rgba(37,62,101,0.05);
  border-radius: 12px;
}

/* == VISUAL HIERARCHY (SECTION TITLES, MARGINS) == */
section, .section {
  border-radius: 12px;
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* == TABLE RESPONSIVE == */
@media (max-width: 570px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table td {
    padding: 10px 5px;
    border: none;
    border-bottom: 1px solid #E3EAF2;
  }
  .pricing-table tr {
    margin-bottom: 13px;
    border-bottom: 2px solid #9AB6D2;
  }
}


/* === ACCESSIBILITY HIGHLIGHTS === */
a:focus-visible, .btn:focus-visible, button:focus-visible, input[type="submit"]:focus-visible {
  outline: 2px solid #192946;
  outline-offset: 2px;
  border-radius: 3px;
}

/* == MICRO-INTERACTIONS == */
.btn, .footer-menu a, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.18s, color 0.16s, background 0.18s;
}
.btn:active, button:active {
  box-shadow: 0 1px 3px rgba(37,62,101,0.16);
}

/****** ===== END OF STYLE.CSS ===== ******/
