/* ======================================================  
   PHOTONREPARATUR Modern Bold STYLE - style.css
   ======================================================  */

/* 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, input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  background: #F1F6F8;
  color: #184156;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #257D8E;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #184156;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
}
button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #184156;
}
h1 { font-size: 2.5rem; margin-bottom: 28px; line-height: 1.14; }
h2 { font-size: 2rem; margin-bottom: 22px; line-height: 1.17; }
h3 { font-size: 1.5rem; margin-bottom: 15px; line-height: 1.2; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

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

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* HEADER + NAVIGATION */
header {
  background: #184156;
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 12px rgba(24,65,86,0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  padding-right: 18px;
}
.logo img {
  height: 44px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  color: #F1F6F8;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  background: #257D8E;
  color: #fff !important;
  border-radius: 30px;
  padding: 14px 34px;
  box-shadow: 0 2px 10px rgba(37,125,142,0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: #184156;
  transform: translateY(-2px) scale(1.027);
  box-shadow: 0 4px 18px rgba(24,65,86,0.16);
}
header .cta-button {
  margin: 0 16px 0 0;
}
.mobile-menu-toggle {
  display: none;
  background: #257D8E;
  color: #fff;
  border-radius: 8px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1103;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #184156;
  color: #F1F6F8;
}
@media (max-width: 992px) {
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta-button {
    margin: 0 10px 0 0;
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #184156;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.62,.31,.21,.91);
  box-shadow: -4px 0 32px rgba(37,125,142,0.21);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #fff;
  margin: 24px 28px 0 0;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  z-index: 1310;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F1F6F8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  margin-top: 60px;
  padding: 20px 42px 0 42px;
}
.mobile-nav a {
  color: #F1F6F8;
  font-size: 1.35rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 0;
  display: block;
  width: 100%;
  border-radius: 2px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #257D8E;
  color: #fff;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* HERO SECTION - Homepage */
.hero {
  background: #257D8E;
  color: #fff;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 38px rgba(37,125,142,0.20);
  margin-bottom: 52px;
  padding: 70px 0 62px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(24,65,86,0.20);
}
.hero p {
  color: #F1F6F8;
  font-size: 1.18rem;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero .cta-button {
  background: #F1F6F8;
  color: #257D8E !important;
  box-shadow: 0 2px 10px rgba(241,246,248, 0.13);
  font-weight: bold;
}
.hero .cta-button:hover, .hero .cta-button:focus {
  background: #fff;
  color: #184156 !important;
  box-shadow: 0 6px 20px rgba(24,65,86,0.13);
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 38px 0 32px 0;
    margin-bottom: 30px;
  }
}

/* FEATURE GRID & CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 34px 0 0 0;
}
.feature-icon {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(24,65,86,0.07);
  padding: 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex-basis: 300px;
  min-width: 220px;
  max-width: 100%;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow 0.22s, transform 0.19s;
}
.feature-icon img {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}
.feature-icon h3 {
  font-size: 1.15rem;
  color: #184156;
  margin-bottom: 0;
  font-weight: 700;
}
.feature-icon p {
  font-size: 1rem;
  color: #257D8E;
  font-weight: 500;
}
.feature-icon:hover, .feature-icon:focus-within {
  box-shadow: 0 12px 32px rgba(37,125,142, 0.18);
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
  .feature-icon { flex-basis: 100%; }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
  }
  .feature-icon {
    width: 100%;
    min-width: unset;
    padding: 22px 14px;
  }
}

/* SERVICES LIST */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 24px 0;
}
.service-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 13px;
  padding: 17px 18px;
  box-shadow: 0 3px 10px rgba(24,65,86,0.07);
  margin-bottom: 0;
  position: relative;
}
.service-list img {
  width: 38px;
  height: 38px;
}
.service-list strong {
  color: #184156;
  font-size: 1.09rem;
}
.service-list span {
  color: #257D8E;
  font-size: 0.98rem;
  margin-left: 0;
  font-weight: 500;
}
@media (max-width: 700px) {
  .service-list li {
    flex-direction: column;
    gap: 8px;
    padding: 14px 10px;
  }
  .service-list img { margin-bottom: 0; }
}


/* SERVICE GRID (services.html) */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 38px 0 16px 0;
  justify-content: space-between;
}
.service-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 14px rgba(24,65,86,0.09);
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .18s, transform .16s;
  position: relative;
  margin-bottom: 0;
}
.service-grid > div:hover, .service-grid > div:focus-within {
  box-shadow: 0 14px 38px rgba(37,125,142, 0.13);
  transform: translateY(-2px) scale(1.025);
}
.service-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .service-grid {
    gap: 14px;
    justify-content: flex-start;
  }
  .service-grid > div { max-width: 100%; min-width: 160px; }
}
@media (max-width: 600px) {
  .service-grid {
    flex-direction: column;
    gap: 14px;
  }
  .service-grid > div {
    width: 100%;
    padding: 17px 13px;
    font-size: 1rem;
  }
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px 18px 24px;
  background: #F1F6F8;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(24,65,86,0.09);
  margin-bottom: 22px;
  color: #184156;
  max-width: 650px;
  transition: box-shadow .17s, transform .14s;
  font-size: 1.10rem;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 34px rgba(37,125,142,0.15);
  transform: translateY(-2px) scale(1.016);
}
.testimonial-card p {
  font-family: 'Montserrat', sans-serif;
  color: #184156;
  font-size: 1.09em;
  line-height: 1.6;
  font-weight: 600;
}
.testimonial-card span {
  color: #257D8E;
  font-size: 0.97em;
  font-weight: 500;
  margin-left: 2px;
}

/* CASE STUDY SECTION (references.html) */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
  margin-bottom: 8px;
  justify-content: space-between;
}
.case-study {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(24,65,86,0.08);
  flex: 1 1 270px;
  min-width: 210px;
  max-width: 340px;
  padding: 24px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .17s, transform .16s;
}
.case-study:hover, .case-study:focus-within {
  box-shadow: 0 15px 38px rgba(37,125,142,0.10);
  transform: translateY(-3px) scale(1.021);
}
.case-study h3 { margin-bottom: 4px; font-size: 1.18rem; color: #184156; }
.case-study ul.service-type-tags {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 6px 0 8px 0; list-style: none; padding: 0;
}
.case-study ul.service-type-tags li {
  background: #F1F6F8;
  color: #257D8E;
  border-radius: 8px;
  padding: 3px 12px;
  font-size: 0.97em;
  font-weight: bold;
}
@media (max-width: 900px) {
  .case-study-list {
    gap: 14px;
    justify-content: flex-start;
  }
  .case-study { max-width: 100%; min-width: 140px; }
}
@media (max-width: 600px) {
  .case-study-list { flex-direction: column; gap: 12px; }
  .case-study { width: 100%; padding: 15px 9px; }
}

/* TABLES (PRICING) */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 13px rgba(24,65,86,0.07);
  overflow: hidden;
  margin-top: 18px;
  margin-bottom: 30px;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  font-size: 1.09em;
  text-align: left;
}
.pricing-table th {
  background: #257D8E;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.pricing-table tr:nth-child(even) td {
  background: #F1F6F8;
}
@media (max-width: 700px) {
  .pricing-table th, .pricing-table td { padding: 9px 8px; font-size: 0.98em; }
}


/* STEP BY STEP LIST / TIMELINE */
.step-by-step-list, .step-by-step-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: decimal inside;
  padding: 0 0 0 10px;
  margin-bottom: 30px;
  font-size: 1.08rem;
  color: #184156;
}
.step-by-step-list li, .step-by-step-timeline li {
  background: #F1F6F8;
  border-radius: 9px;
  padding: 13px 15px 13px 20px;
  margin-bottom: 0;
  font-weight: 500;
}


/* FAQ LIST (Accordion-like) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 14px 0;
  width: 100%;
}
.faq-list li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(24,65,86,0.06);
  padding: 18px 16px;
  color: #184156;
  font-weight: 500;
}

/* BADGES / TAGS */
.service-guarantee-badge, .no-hidden-fees-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #257D8E;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  border-radius: 19px;
  padding: 6px 16px 6px 12px;
  margin-top: 15px;
  box-shadow: 0 3px 12px rgba(37,125,142,0.09);
  transition: transform .13s;
}
.service-guarantee-badge img, .no-hidden-fees-badge img {
  width: 22px;
  height: 22px;
}
.service-guarantee-badge:hover, .no-hidden-fees-badge:hover { transform: scale(1.045); }

/* CONTACT PAGE COMPONENTS */
.contact-details-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24,65,86,0.07);
  padding: 24px 21px;
  gap: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-details-block p img {
  margin-right: 10px;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}
.contact-info-brief, .contact-info-tip, .contact-info-short {
  color: #257D8E;
  background: #F1F6F8;
  border-radius: 7px;
  padding: 13px 16px;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 14px;
  margin-bottom: 0;
}
.contact-info-short img { width: 19px; height: 19px; margin-right: 4px; }

/* CONFIRMATION TEXT (thanks.php) */
.confirmation-text {
  color: #184156;
  background: #F1F6F8;
  border-radius: 13px;
  padding: 18px 20px;
  margin-bottom: 23px;
  box-shadow: 0 3px 10px rgba(24,65,86,0.04);
  font-size: 1.07rem;
}
.confirmation-text strong {
  color: #257D8E;
}

/* CARD / FEATURE ITEM LAYOUTS */
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* VALUES and USP LISTS */
.core-values-list, .usp-list, .included-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}
.core-values-list li, .usp-list li, .included-services-list li {
  background: #F1F6F8;
  color: #184156;
  border-radius: 8px;
  padding: 12px 12px 12px 19px;
  margin-bottom: 0;
  font-weight: 500;
}
.trust-elements, .awards-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 0;
}
.trust-elements p, .awards-certifications p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: #fff;
  border-radius: 7px;
  padding: 7px 16px;
  color: #257D8E;
  font-size: 0.98em;
  box-shadow: 0 1px 6px rgba(24,65,86,0.05);
}
.trust-elements img, .awards-certifications img {
  width: 19px; height: 19px;
}
.efficiency-guarantee {
  margin-top: 13px;
  background: #E9F1F4;
  border-radius: 7px;
  padding: 13px 18px;
  color: #184156;
  font-weight: 500;
  font-size: 1rem;
}

/* FOOTER DESIGN */
footer {
  background: #184156;
  color: #fff;
  padding: 38px 0 0px 0;
  box-shadow: 0 -7px 40px rgba(24,65,86,0.10);
}
.footer-content {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F1F6F8;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #257D8E;
}
.company-info, .footer-branding {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: #d8e5ea;
}
.footer-branding img {
  width: 43px;
  height: 43px;
  margin-bottom: 5px;
  filter: brightness(2) grayscale(0.3);
}
.footer-branding span {
  color: #F1F6F8;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 10px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  padding: 22px 16px;
  background: #fff;
  box-shadow: 0 -4px 32px rgba(24,65,86,0.14);
  color: #184156;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  transition: transform .32s cubic-bezier(.61,.36,.26,.99);
}
.cookie-consent-banner.hide {
  transform: translateY(160%);
}
.cookie-consent-banner p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 7px;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background .15s, color .13s;
}
.cookie-btn.accept {
  background: #257D8E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #184156;
}
.cookie-btn.reject {
  background: #F1F6F8;
  color: #184156;
  border: 2px solid #184156;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #184156;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #184156;
  border: 2px solid #257D8E;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #257D8E;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 6px;
  }
}

/* COOKIE MODAL (Settings) */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,65,86,0.38);
  z-index: 2110;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .28s;
}
.cookie-modal {
  background: #fff;
  color: #184156;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(24,65,86,0.19);
  padding: 35px 38px 25px 38px;
  max-width: 90vw;
  min-width: 280px;
  width: 400px;
  display: flex;
  flex-direction: column;
  z-index: 2202;
  animation: cookieModalSlideIn .33s cubic-bezier(.74,.04,.24,.99);
}
@keyframes cookieModalSlideIn {
  from { transform: translateY(60px) scale(.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 2.1rem;
  color: #257D8E;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2215;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #184156;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #184156;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal-category label {
  font-weight: 600;
  font-size: 1.02rem;
  color: #257D8E;
  margin-bottom: 0;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #257D8E;
  width: 22px;
  height: 22px;
  margin: 0 6px 0 0;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
  padding: 12px 12px;
  font-size: 1rem;
}
.cookie-modal-category .cookie-toggle-disabled {
  color: #d1d1d1;
  font-weight: 700;
}
@media (max-width: 520px) {
  .cookie-modal { padding: 18px 8px 18px 13px; width: 97vw; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta-button, .feature-icon, .service-grid > div, .testimonial-card, .case-study, .no-hidden-fees-badge, .service-guarantee-badge, .footer-branding img {
  transition: box-shadow .17s, background .18s, color .14s, transform .17s;
}
.cta-button:active, .feature-icon:active, .service-grid > div:active, .testimonial-card:active, .case-study:active {
  transform: scale(0.983);
}

/* SCROLLBAR STYLING for MODERN BOLD FEEL */
::-webkit-scrollbar {
  width: 10px;
  background: #E9F1F4;
}
::-webkit-scrollbar-thumb {
  background: #257D8E;
  border-radius: 16px;
}

/* MISC/UTILITY */
.text-section, .explanation-text, .service-breakdown {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(24,65,86,0.05);
  padding: 22px 20px;
  font-size: 1.07rem;
  margin-bottom: 0;
}
.text-section h2, .text-section h3, .explanation-text h2 { margin-top: 16px; }
.text-section p { color: #184156; opacity: .97; margin-bottom: 8px; }

/* RESPONSIVE OVERALL LAYOUT ADJUSTMENTS */
@media (max-width: 800px) {
  .container { padding: 0 7px; }
  .content-wrapper { max-width: 100%; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  h1, h2, h3, h4 { line-height: 1.18; }
}

/* GEOMETRIC DECORATIVE SHAPES (modern_bold) */
body::before {
  content: '';
  position: fixed;
  top: -60px; left: -70px;
  width: 180px; height: 180px;
  background: #257D8E;
  opacity: 0.065;
  border-radius: 33% 66% 54% 80%;
  z-index: 0;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  bottom: -50px; right: -90px;
  width: 180px; height: 170px;
  background: #184156;
  opacity: 0.07;
  border-radius: 55% 45% 64% 32%;
  z-index: 0;
  pointer-events: none;
}

/* SELECTION COLORS */
::selection { background: #257D8E; color: #fff; }
::-moz-selection { background: #257D8E; color: #fff; }

/* PRINT MODE */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  main, .container, .content-wrapper {
    padding: 0 !important;
    background: #fff !important;
  }
}

/* === END === */
