:root {
      --teal: #2b2f87;
      --teal-dark: #18204d;
      --orange: #d61f3e;
      --orange-soft: #f4b7c1;
      --cream: #fffaf3;
      --sand: #f4eadf;
      --ink: #18242a;
      --muted: #5f6d72;
      --white: #ffffff;
      --line: rgba(43, 47, 135, 0.14);
      --shadow: 0 25px 60px rgba(24, 32, 77, 0.16);
      --radius-lg: 28px;
      --radius-md: 20px;
      --max: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { margin: 0; font-family: "Manrope", sans-serif; color: var(--ink); background: #fbf7f1; line-height: 1.6; overflow-x: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; transition: 0.3s; }
    .container { max-width: var(--max); }

    /* GLOBAL HEADER & TOPBAR */
    .topbar { background: var(--teal-dark); color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; padding: 0.6rem 0; }
    header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 1000; }
    .navbar { padding: 0.5rem 0; }
    .navbar-brand img { height: 3.6rem; }
    .nav-link { font-weight: 700; color: #28313C !important; font-size: 0.95rem; padding: 0.5rem 1rem !important; }
    .nav-link:hover { color: var(--orange) !important; }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu { display: block; margin-top: 0; opacity: 1; visibility: visible; transform: translateY(0); }
      .dropdown-menu { display: block; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; border: none; box-shadow: var(--shadow); border-radius: 12px; }
    }

    .button {
      background: linear-gradient(135deg, var(--orange), #ff9f54);
      color: white !important;
      padding: 0.8rem 1.8rem;
      border-radius: 999px;
      font-weight: 800;
      box-shadow: 0 10px 20px rgba(214, 31, 62, 0.2);
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      height: 54px;
    }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(214, 31, 62, 0.3); }

    /* MAIN CONTENT HELPERS */
    section { padding: 5rem 0; }
    .eyebrow { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 50px; color: #ffd5b4; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem; }
    h1, h2 { font-family: "Cormorant Garamond", serif; font-weight: 700; }

    /* SERVICE SPECIFIC STYLES */
    .hero-wrap { 
      padding: 6rem 0;
      background: linear-gradient(rgba(9, 23, 40, 0.85), rgba(9, 23, 40, 0.95)), url('https://images.unsplash.com/photo-1455390582262-044cdead277a?q=80&w=2073');
      background-size: cover; background-position: center; color: var(--white);
    }
    .consult-card { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: var(--shadow); color: var(--ink); }
    .form-control, .form-select { border-radius: 12px; padding: 0.75rem 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
    
    .process-line { border-left: 2px dashed var(--orange-soft); padding-left: 35px; margin-left: 15px; }
    .process-step-item { position: relative; margin-bottom: 40px; }
    .process-step-item::before { content: ""; position: absolute; left: -42px; top: 5px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 4px rgba(214, 31, 62, 0.1); }

    .service-grid-card { background: white; padding: 2rem; border-radius: 20px; border: 1px solid var(--line); height: 100%; transition: 0.3s; }
    .service-grid-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

    .cta-banner { background: var(--teal-dark); border-radius: 30px; padding: 4rem 2rem; color: white; text-align: center; }

    /* FAQ STYLES */
    .accordion-item { border: none; margin-bottom: 1rem; border-radius: 15px !important; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
    .accordion-button:not(.collapsed) { background-color: var(--teal); color: white; }

    /* FOOTER */
    .footer-main { padding-top: 5rem; background: #fff; border-top: 1px solid var(--line); }
    .footer-columns h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 800; color: var(--teal-dark); }
    .footer-columns a, .footer-columns p { display: block; margin-bottom: 0.8rem; color: var(--muted); font-size: 0.95rem; }
    .footer-bottom { padding: 2rem 0; border-top: 1px solid var(--line); margin-top: 3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
  