/* ===================
   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, 
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F3F3F7;
  color: #2D2A4C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure,footer,header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #2D2A4C;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* ==============
   BRAND FONTS
   ============== */

@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #2D2A4C;
}

h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.22; margin-bottom: 20px; }
h3 { font-size: 1.32rem; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 1.12rem; margin-bottom: 8px; }
p,
li,
span,
a,
div,
address {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2D2A4C;
}
@media (max-width: 768px) {
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.05rem; }
}

.subheadline {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #524f6c;
  margin-bottom: 28px;
  font-weight: 400;
}

/* ================
   GLOBAL SPACING
   ================ */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section,
.hero, .features,
.about, .about-preview, .service-preview, .services, .pricing,
.cta-banner, .testimonials, .legal-content,
.thank-you, .next-steps,
.contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(45, 42, 76, 0.06);
}
@media (max-width: 768px) {
  .section, .hero,
  .about, .about-preview, .service-preview, .services,
  .pricing, .cta-banner, .testimonials, .legal-content,
  .thank-you, .next-steps, .contact-section {
    padding: 25px 10px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ================
   NAVIGATION STYLES
   ================ */
header {
  background: #fff;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(45, 42, 76, 0.05);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 72px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: relative;
}
.main-nav img {
  height: 38px;
  margin-right: 18px;
  vertical-align: middle;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin: 0 24px 0 0;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav li a {
  color: #2D2A4C;
  opacity: 0.90;
  font-size: 1rem;
  padding: 8px 0;
  transition: color 0.22s;
  position: relative;
  font-weight: 500;
}
.main-nav li a:hover,
.main-nav li a:focus {
  color: #E5635E;
  opacity: 1;
}
.main-nav .btn-primary {
  margin-left: 20px;
}
@media (max-width: 1050px) {
  .main-nav ul {
    gap: 14px;
    margin: 0 10px 0 0;
  }
}
@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .main-nav .btn-primary { display: none; }
  .main-nav { padding-right: 10px; }
}

/* ========
   MOBILE MENU
   ======== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #2D2A4C;
  font-size: 2rem;
  border: 2px solid #2D2A4C;
  border-radius: 9px;
  width: 42px;
  height: 42px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  z-index: 120;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: border 0.2s, background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F3F3F7;
  border-color: #E5635E;
  color: #E5635E;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 130;
  transform: translateX(-100vw);
  transition: transform 0.43s cubic-bezier(0.5,0,0.5,1);
  box-shadow: 0 0 40px 4px rgba(45, 42, 76, 0.14);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 25px 25px 0 0;
  background: #E5635E;
  border-radius: 50%;
  color: #fff;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 1px 6px 0 rgba(45, 42, 76, 0.09);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #C0392B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 20px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #2D2A4C;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F3F3F7;
  color: #E5635E;
}

/* =============
   HERO SECTION
   ============= */
.hero {
  background: #F3F3F7;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 340px;
  box-shadow: none;
  border-radius: 18px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #2D2A4C;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero .btn-primary {
  margin-top: 14px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    padding: 32px 0 22px 0;
  }
  .hero h1 { font-size: 1.3rem; margin-bottom: 12px; }
}

/* =============
   BUTTONS
   ============= */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 40px;
  border: 2px solid #2D2A4C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.17s, border 0.15s, box-shadow 0.18s;
  min-width: 150px;
  letter-spacing: 0.02em;
  margin: 8px 0;
  box-shadow: 0 2px 12px 0 rgba(45, 42, 76, 0.06);
}
.btn-primary {
  background: #2D2A4C;
  color: #fff;
  border: 2px solid #2D2A4C;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #E5635E;
  border-color: #E5635E;
  color: #fff;
}
.btn-outline {
  background: #fff;
  color: #2D2A4C;
  border: 2px solid #2D2A4C;
}
.btn-outline:hover,
.btn-outline:focus {
  background: #2D2A4C;
  color: #fff;
  border: 2px solid #2D2A4C;
}
@media (max-width: 420px) {
  .btn-primary, .btn-outline {
    width: 100%;
    min-width: unset;
    padding-left: 0.9em; padding-right: 0.9em;
    font-size: 1em;
  }
}

/* ================
   FLEXBOX PATTERNS (MANDATORY)
   ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(45, 42, 76, 0.07);
  padding: 28px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
}
.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;
  margin-bottom: 20px;
  background: #F3F3F7;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(45, 42, 76, 0.06);
  flex-direction: column;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(45,42,76,0.07);
  padding: 32px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 225px;
}
@media (max-width: 768px) {
  .card-container,
  .content-grid,
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item { min-width: 0; padding: 22px 12px; }
}

/* ================
   FEATURES SECTION
   ================ */
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(45,42,76,0.07);
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}
.feature-item h3 {
  font-size: 1.14rem;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 1rem;
  color: #2D2A4C;
}

/* ================
   SERVICE SECTION CARDS/LIST
   ================ */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.services .service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(45,42,76,0.07);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 265px;
  min-width: 200px;
  margin-bottom: 20px;
}
.services .service-list img {
  height: 34px;
  margin-bottom: 10px;
}
.services .service-list h2 {
  font-size: 1.21rem;
  margin-bottom: 8px;
}
.services .service-list p {
  color: #524f6c;
  font-size: 1rem;
}
.service-price {
  color: #E5635E;
  font-weight: 700;
  margin-top: 10px;
  font-size: 1.11rem;
}
@media (max-width: 760px) {
  .services .service-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* =============
  PRICING TABLE
 ============== */
.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #e1e0ea;
  padding: 18px 10px 18px 10px;
  font-size: 1rem;
  text-align: left;
}
.pricing-table th {
  background: #F3F3F7;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #2D2A4C;
  font-size: 1.12rem;
}
.pricing-table tr:last-child td {
  border-bottom: 0;
}
.pricing-table td {
  background: #fff;
  color: #2D2A4C;
}
@media (max-width: 700px) {
  .pricing-table thead { display: none; }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tr { margin-bottom: 18px; border-radius: 12px; box-shadow: 0 2px 12px 0 rgba(45,42,76,0.13); background: #fff; }
  .pricing-table td {
    padding: 10px 6px;
    border: 0;
  }
}

/* ================
   TESTIMONIALS
   ================ */
.testimonial-card {
  background: #F3F3F7;
  color: #2D2A4C;
  border-radius: 14px;
  padding: 26px 26px 18px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  box-shadow: 0 2px 10px 0 rgba(45,42,76,0.10);
  min-width: 240px;
}
.testimonial-card p {
  color: #2D2A4C;
  font-size: 1.04rem;
  line-height: 1.44;
  margin-bottom: 12px;
}
.testimonial-card span {
  color: #524f6c;
  font-size: 0.97rem;
  font-style: italic;
  margin-top: 8px;
}
.testimonials strong,
.testimonials-preview strong {
  color: #2D2A4C;
  margin-top: 14px;
  display: block;
  font-size: 1.12rem;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 16px 8px 10px 8px; min-width: 0; }
}

/* ================
   CTA BANNER
   ================ */
.cta-banner {
  background: #2D2A4C;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(45,42,76,0.10);
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 40px;
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .btn-primary {
  background: #E5635E;
  border-color: #fff;
  color: #fff;
  margin-top: 14px;
}
.cta-banner .btn-primary:hover,
.cta-banner .btn-primary:focus {
  background: #fff;
  color: #2D2A4C;
  border-color: #2D2A4C;
}
@media (max-width: 700px) {
  .cta-banner { padding: 32px 10px; border-radius: 10px; }
}

/* ================
   FOOTER
   ================ */
footer {
  background: #2D2A4C;
  color: #fff;
  padding: 32px 0 0 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 30px;
}
footer .container {
  padding: 0 20px 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid #E5635E;
}
footer address {
  color: #fff;
  font-style: normal;
  font-size: 1.04rem;
}
footer a {
  color: #fff;
  opacity: 0.88;
  transition: color 0.18s, opacity 0.15s;
  font-weight: 500;
}
footer a:hover,
footer a:focus {
  color: #E5635E;
  opacity: 1;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 780px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav { gap: 10px; }
}

/* ================
   LEGAL CONTENT
   ================ */
.legal-content {
  background: #fff;
  border-radius: 14px;
  padding: 36px 22px;
  box-shadow: 0 2px 14px 0 rgba(45,42,76,0.07);
  margin-bottom: 60px;
  font-size: 1.01rem;
}
.legal-content h1 { font-size: 1.48rem; }
.legal-content p,
.legal-content ul, .legal-content ol {
  font-size: 1rem; color: #2D2A4C; line-height: 1.6; margin-bottom: 12px; }
.legal-content ul {
  padding-left: 16px;
  list-style: disc;
}
.legal-content ol { padding-left: 24px; list-style: decimal; }

/* ================
   THANK-YOU PAGE
   ================ */
.thank-you, .next-steps {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(45,42,76,0.09);
}

/* ================
   ABOUT PAGE STYLES
   ================ */
.about .text-section, .about .text-section ul {
  margin-bottom: 16px;
}
.about .text-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.16rem;
  margin-bottom: 8px;
}

/* ================
   CONTACT SECTION
   ================ */
.contact-section .contact-info {
  margin-bottom: 12px;
}
.contact-section address {
  font-style: normal;
  font-size: 1.06rem;
  color: #2D2A4C;
  margin-bottom: 8px;
}
.social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  color: #E5635E;
  text-decoration: underline;
  font-weight: 500;
}
.social-links a:hover,
.social-links a:focus { color: #2D2A4C; }

/* ================
   ANIMATIONS
   ================ */
.btn-primary, .btn-outline,
.mobile-menu, .mobile-menu-close,
.cookie-banner, .cookie-modal {
  transition: all 0.23s cubic-bezier(.34,1.34,.64,1), box-shadow 0.12s;
}
/* fade-in utility */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.9s .14s cubic-bezier(.34,1.34,.64,1) forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* ================
   COOKIE CONSENT BANNER
   ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  width: 100vw;
  background: #2D2A4C;
  color: #fff;
  box-shadow: 0 -3px 18px 0 rgba(45, 42, 76, 0.19);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 30px;
  gap: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  animation: fadeInUp .9s .1s cubic-bezier(.34,1.34,.64,1) forwards;
}
.cookie-banner p {
  color: #fff;
  margin: 0 12px 0 0;
  flex: 1 1 320px;
}
.cookie-banner .cookie-btn {
  padding: 8px 22px;
  border-radius: 40px;
  background: #F3F3F7;
  color: #2D2A4C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 2px solid #2D2A4C;
  box-shadow: 0 2px 10px 0 rgba(45, 42, 76, 0.09);
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .cookie-btn.accept {
  background: #E5635E;
  color: #fff;
  border: 2px solid #E5635E;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: #C0392B;
  border: 2px solid #C0392B;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #2D2A4C;
  border: 2px solid #2D2A4C;
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #F3F3F7;
  color: #E5635E;
  border: 2px solid #E5635E;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #E5635E;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #E5635E;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btn { margin-bottom: 6px; }
}

/* ================
   COOKIE MODAL
   ================ */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: rgba(48, 48, 68, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: background 0.24s;
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 14px;
  padding: 40px 22px 28px 22px;
  box-shadow: 0 2px 22px 0 rgba(45,42,76,0.16);
  min-width: 320px; max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: fadeInUp 0.7s .02s cubic-bezier(.23,1.24,.64,1) forwards;
}
.cookie-modal h2 {
  font-size: 1.38rem;
  color: #2D2A4C;
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 5px;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.cookie-categories input[type=checkbox] {
  width: 19px; height: 19px; accent-color: #E5635E;
}
.cookie-categories input[disabled] { accent-color: #2D2A4C; opacity: .65; }
.cookie-modal .modal-btn-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 2px;
}
.cookie-modal .cookie-btn {
  background: #F3F3F7;
  color: #2D2A4C;
  border: 2px solid #2D2A4C;
  border-radius: 40px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .cookie-btn.accept {
  background: #E5635E;
  color: #fff;
  border: 2px solid #E5635E;
}
.cookie-modal .cookie-btn.accept:hover,
.cookie-modal .cookie-btn.accept:focus {
  background: #C0392B;
  color: #fff;
}
.cookie-modal .cookie-btn.cancel {
  background: #fff;
  border: 2px solid #2D2A4C;
  color: #2D2A4C;
}
.cookie-modal .cookie-btn.cancel:hover,
.cookie-modal .cookie-btn.cancel:focus {
  background: #F3F3F7;
  color: #E5635E;
  border-color: #E5635E;
}
@media (max-width: 500px) {
  .cookie-modal-inner {
    padding: 24px 6px 12px 6px;
    min-width: 0;
  }
}

/* ================
   MISC
   ================ */
::-webkit-input-placeholder { color: #aaa; opacity: 1; }
::-moz-placeholder { color: #aaa; opacity: 1; }
:-ms-input-placeholder { color: #aaa; opacity: 1; }
::placeholder { color: #aaa; opacity: 1; }

strong { font-weight: 700; }

a:focus { outline: 2px solid #E5635E; outline-offset: 1px; }
button:focus { outline: 2px solid #E5635E; }

/* ================
   CUSTOM UTILITIES
   ================ */
.text-section,
.service-inclusion {
  margin-bottom: 20px;
}
.service-inclusion ul {
  list-style: disc;
  padding-left: 18px;
}
.service-inclusion li {
  margin-bottom: 8px;
}
/* List for features/advantages */
.features ul {
  padding-left: 18px;
  list-style: disc;
}
.features li {
  color: #2D2A4C;
  margin-bottom: 10px;
  font-size: 1rem;
}

@media (max-width: 540px) {
  .container { padding: 0 5px; }
}

/* ================
   ACCESSIBLE FOCUS STATES
   ================ */
:focus-visible {
  outline: 2px solid #E5635E !important;
  outline-offset: 1.5px;
}

/* ================
   SCROLLBAR STYLE
   ================ */
body::-webkit-scrollbar {
  width: 11px;
  background: #F3F3F7;
}
body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}
body {
  scrollbar-color: #ccc #F3F3F7;
  scrollbar-width: thin;
}
