/* Mythic Drift – Elegant Classic CSS Style v1.0 */
/* RESET & BASELINE */
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 {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  scroll-behavior: smooth;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #183B5D;
  background: #F4F8FF;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #183B5D;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #3DC8B4;
  outline: none;
}
b, strong {
  font-weight: bold;
}
ul, ol {
  margin-left: 24px;
  padding-left: 0;
}
hr {
  border: none;
  border-top: 1px solid #dee2ef;
  margin: 32px 0;
}

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,59,93,0.07), 0 1px 2px rgba(61,200,180,0.03);
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(24,59,93,0.12), 0 2px 8px rgba(61,200,180,0.09);
  transform: translateY(-4px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #e1e5ed, 0 4px 24px 0 rgba(24,59,93, 0.07);
  margin-bottom: 24px;
  min-width: 0;
  max-width: 610px;
  color: #183B5D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADINGS & TYPOGRAPHY */
h1, .h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.17;
  color: #183B5D;
  letter-spacing: -0.02em;
}
h2, .h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.25;
  color: #183B5D;
  margin-bottom: 8px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.25;
  color: #183B5D;
}
h4, .h4 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #2a2a2a;
}
.subheadline {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1.1rem;
  color: #446080;
  font-weight: 400;
  margin-bottom: 12px;
}
.text-section {
  color: #285072;
  line-height: 1.7;
}

@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  margin: 4px 0 4px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  text-align: center;
  box-shadow: 0 1px 4px rgba(61,200,180,0.07);
}
.btn-primary {
  background: #183B5D;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #26507c;
  color: #fff;
  box-shadow: 0 2px 14px rgba(24,59,93,0.11);
}
.btn-secondary {
  background: #fff;
  color: #183B5D;
  border: 1.5px solid #183B5D;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f7fafc;
  color: #3DC8B4;
  border-color: #3DC8B4;
}

/* NAVIGATION */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 1px 16px 0 rgba(24,59,93,0.04);
  border-bottom: 1px solid #ececec;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 77px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', 'Arial', sans-serif;
}
.main-nav a {
  color: #446080;
  font-size: 1rem;
  padding: 8px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #183B5D;
  border-bottom: 2px solid #3DC8B4;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #183B5D;
  cursor: pointer;
  margin-left: 12px;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #3DC8B4;
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background: rgba(24,59,93,0.92);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  margin: 20px 32px 10px 0;
  cursor: pointer;
  z-index: 201;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #3DC8B4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  padding: 13px 0 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color 0.18s, border 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #3DC8B4;
  border-bottom: 1px solid #3DC8B4;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}

/* HERO SECTIONS */
section > .container > .content-wrapper {
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 24px;
}
main section {
  background: none;
  border-radius: 0;
  box-shadow: none;
}
main section:nth-child(even) {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 30px rgba(24,59,93,0.04);
}

/* FEATURE GRIDS & LISTS */
.feature-grid,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 20px 0;
  align-items: stretch;
  justify-content: flex-start;
  list-style: none;
}
.feature-grid li,
.feature-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #e6eaf0;
  padding: 28px 24px 20px;
  gap: 14px;
  min-width: 205px;
  flex: 1 1 225px;
}
.feature-grid li img,
.feature-list li img {
  height: 38px;
  margin-bottom: 10px;
  opacity: .90;
}
.feature-list li span {
  font-family: 'Montserrat', serif;
  color: #2b4154;
  font-size: 1rem;
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  list-style: none;
}
.service-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 12px rgba(61,200,180,.08);
  padding: 24px 22px;
  flex: 1 1 250px;
  min-width: 200px;
  max-width: 315px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .15s;
}
.service-list li:hover {
  box-shadow: 0 6px 22px rgba(24,59,93,0.11);
  transform: translateY(-2px) scale(1.012);
}
.price {
  align-self: flex-end;
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  color: #3DC8B4;
  font-weight: 600;
  margin-top: 8px;
}

/* CARDS (for cards/grids, in case needed) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  border-left: 5px solid #3DC8B4;
  color: #183B5D;
  font-size: 1.12rem;
  line-height: 1.7;
  position: relative;
  margin-bottom: 32px;
  box-shadow: 0 0 0 1.5px #e1f7f2, 0 2px 12px 0 rgba(24,59,93, 0.06);
}
.testimonial-card .client-name {
  font-family: 'Montserrat', serif;
  color: #183B5D;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 2px;
}
.testimonial-card .stars {
  color: #e8d32e;
  font-size: 1rem;
  font-family: serif;
  letter-spacing: 2px;
}

/* LISTINGS, BENEFITS */
.model-listings, .benefits-list, .feature-points ul, .benefit-points ul, .news_list ul, .trend_highlights ul,
.advice_articles ul, .tips_list ul, .brand_values ul, .feature-points ul, .pricing-table ul, .rights_overview ul {
  margin-left: 24px;
  margin-bottom: 10px;
  color: #2a4459;
  list-style: disc;
}
.model-listings li, .benefits-list li,
.advice_articles ul li, .tips_list ul li, .brand_values ul li,
.feature-points ul li, .benefit-points ul li, .pricing-table ul li, .rights_overview ul li {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 8px;
}
.benefits-list, .feature-points ul, .benefit-points ul, .pricing-table ul, .rights_overview ul {
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: #183B5D;
  color: #fff;
  padding: 0 0 0 0;
  box-shadow: 0 -1px 12px 0 rgba(24,59,93,0.05);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 20px 16px 20px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1.5px solid #e2f2ec22;
  padding-bottom: 18px;
}
.footer-main a img {
  height: 38px;
}
.footer-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-menu a {
  color: #eaf5fa;
  font-size: 1rem;
  font-family: 'Montserrat', 'Arial', sans-serif;
  transition: color .14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #3DC8B4;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-top: 12px;
  font-size: 1rem;
  color: #eaf5fa;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 155px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.footer-social a img {
  height: 28px;
  opacity: 0.9;
  transition: opacity .13s;
}
.footer-social a:hover img {
  opacity: 1;
}
.footer-note {
  margin: 20px 0 0 0;
  color: #b6dde8;
  font-family: 'Montserrat', serif;
  font-size: .98rem;
  opacity: 0.91;
}

@media (max-width: 900px) {
  .footer-main, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-menu {
    gap: 14px;
    flex-wrap: wrap;
  }
}

/* CONTACT INFO LIST */
.contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.contact-info-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7fbfc;
  padding: 13px 16px;
  border-radius: 9px;
  font-size: 1.02rem;
  color: #1b2a41;
}

/* MAP/LOCATION SECTION */
.map_embedded {
  background: #f1f7fb;
  border-left: 3px solid #3DC8B4;
  padding: 12px 18px;
  border-radius: 7px;
  margin-top: 4px;
  font-size: 1.04rem;
}

/* PRIVACY, POLICY, TERMS TEXT */
.privacy_policy_text, .terms_text, .rgpd_explanation, .cookie_policy_text, .opt_in_controls {
  background: #f8fafc;
  padding: 22px 20px 17px 20px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #e2eef2;
  color: #285072;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* SPACING */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 650px) {
  main section {
    padding: 22px 5px;
    margin-bottom: 43px;
  }
  .service-list li, .feature-list li, .feature-grid li {
    min-width: 99px;
    max-width: unset;
  }
}

/* TRANSITIONS & HOVER EFFECTS */
.card, .btn-primary, .btn-secondary, .service-list li, .feature-list li, .feature-grid li {
  transition: box-shadow 0.17s, background 0.12s, color 0.12s, transform 0.14s;
}

/* MICRO-INTERACTIONS */
section a.btn-primary:active,
section a.btn-secondary:active {
  transform: scale(0.98);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .feature-grid, .feature-list, .service-list {
    gap: 16px;
  }
}
@media (max-width: 525px) {
  h1, .h1 { font-size: 1.5rem; }
  h2, .h2 { font-size: 1.15rem; }
  .section { padding: 15px 2px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #183B5D;
  box-shadow: 0 -2px 32px 0 rgba(24,59,93,0.09);
  padding: 22px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5000;
  align-items: center;
  width: 100vw;
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  transition: transform 0.23s cubic-bezier(.79,.14,.15,.86), opacity 0.14s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 2px;
}
.cookie-banner button {
  padding: 9px 22px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  margin: 0 1.5px;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  transition: background .14s, color .14s, box-shadow .13s;
}
.cookie-banner .accept {
  background: #3DC8B4;
  color: #fff;
  border: 1px solid #3DC8B4;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #183B5D;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #183B5D;
  border: 1px solid #183B5D;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f7fbfc;
  color: #3DC8B4;
  border: 1px solid #3DC8B4;
}
.cookie-banner .settings {
  background: #f1f7fb;
  color: #183B5D;
  border: 1px solid #e0ecef;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #e6fbf8;
  color: #3DC8B4;
  border-color: #3DC8B4;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5010;
  background: rgba(24,59,93,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .24s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #183B5D;
  border-radius: 14px;
  max-width: 420px;
  min-width: 275px;
  padding: 36px 28px 26px 28px;
  box-shadow: 0 10px 44px rgba(24,59,93,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Montserrat', serif;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-cat label {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #dee6ee;
  border-radius: 12px;
  transition: .2s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #3DC8B4;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 4px #3dc8b426;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: #a5faee;
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(18px);
  background: #183B5D;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-save {
  background: #3DC8B4;
  color: #fff;
  border-radius: 6px;
  padding: 8px 26px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .14s, color .11s;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: #183B5D;
}
.cookie-modal .cookie-cancel {
  background: #fff;
  color: #183B5D;
  border: 1px solid #e0ecef;
  border-radius: 6px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .12s, color .11s;
}
.cookie-modal .cookie-cancel:hover, .cookie-modal .cookie-cancel:focus {
  background: #f7fafc;
  color: #3DC8B4;
}

/* MODAL CLOSE BUTTON */
.cookie-modal-close-btn {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #183B5D;
  cursor: pointer;
  z-index: 20;
}
.cookie-modal-close-btn:hover, .cookie-modal-close-btn:focus {
  color: #3DC8B4;
}

/* MISC ENHANCED */
::-webkit-input-placeholder { color: #7288a1; }
::-moz-placeholder { color: #7288a1; }
:-ms-input-placeholder { color: #7288a1; }
::placeholder { color: #7288a1; }

/* CLASSIC/ELEGANT SMOOTH SHADOWS */
.card, .testimonial-card, .service-list li, .feature-list li, .feature-grid li {
  box-shadow: 0 1px 16px 0 rgba(24,59,93,0.045), 0 0.5px 4px rgba(61,200,180,0.03);
}

/* VISUAL HIERARCHY SPACING (Margin Bottoms) */
h1, h2, h3, h4, h5, h6 { margin-bottom: .6em; }
p, ul, ol, .text-section, .brand_values, .feature-points { margin-bottom: 1em; }
.section:last-child, main > section:last-of-type { margin-bottom: 0 !important; }

/* OVERFLOW GUARDS */
* { box-sizing: border-box; }

/* END OF CSS */
