      html {
        scroll-behavior: smooth;
      }
      
      body {
        background-color: #f7f5f1;
        color: #1d2733;
        font-family: system-ui, -apple-system;
      }

      /* NAVBAR FIXED */
      .navbar {
        padding: 6px 0;
      }

      .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* Fix hamburger icon visibility */
      .navbar-toggler {
        border: none;
      }

      .navbar-toggler:focus {
        box-shadow: none;
      }

      /* Mobile spacing */
      @media (max-width: 991px) {

        .contact-form input,
        .contact-form textarea {
          width: 100%;
        }

        /* HERO FIX */
        .hero {
          padding: 60px 16px;  
        }

        h1 {
          font-size: 1.8rem;
          line-height: 1.3;
        }

        .lead {
          font-size: 1rem;
        }

        /* NAVBAR */
        .navbar {
          padding: 8px 12px;
        }

        .navbar-nav {
          background: #ffffff;
          padding: 10px 0;
        }

        .nav-link {
          padding: 10px 20px;
        }

        .logo-wrapper {
          width: 48px;
          height: 48px;
        }
      }

      /* 🔥 LOGO FIX (FORCES CROPPING) */
      .logo-wrapper {
        width: 56px;
        height: 56px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
      }

      .logo-img {
        height: 140%; /* zoom into the logo */
        width: auto;
        transform: scale(0.5); /* force crop */
      }

      /* BRAND TEXT */
      .navbar-brand {
        display: flex;
        align-items: center;
      }

      .navbar-brand div {
        line-height: 1;
      }

      /* LINKS */
      .nav-link {
        font-weight: 500;
      }

      /* HERO */
      .hero {
        padding: 100px 0;
      }

      h1 {
        color: #13263f;
        font-weight: 700;
      }

      h2 {
        color: #13263f;
        margin-bottom: 20px;
      }

      .section {
        padding: 80px 0;
      }

      /* CARDS */
      .card {
        border: 1px solid #e0e6ed;
        border-radius: 12px;
        transition: all 0.2s ease;
      }

      .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      }

      /* BUTTON */
      .btn-primary {
        background-color: #13263f;
        border: none;
        font-weight: 500;
        letter-spacing: 0.3px;
      }

      .btn-primary:hover {
        background-color: #1e3655;
      }

      /* CONTACT */
      .contact-form {
        background: #ffffff;
        padding: 25px;
        border-radius: 12px;
        border: 1px solid #e0e6ed;
      }

      .contact-form input,
      .contact-form textarea {
        font-size: 16px;
        padding: 14px;
        border-radius: 10px;
      }

      .contact-form label {
        font-weight: 500;
        margin-bottom: 5px;
      }

      .contact-form .mb-3 {
        margin-bottom: 18px;
      }

      .contact-form input:focus,
      .contact-form textarea:focus {
        border-color: #13263f;
        box-shadow: 0 0 0 0.15rem rgba(19, 38, 63, 0.15);
      }

      .is-invalid {
        border-color: #dc3545 !important;
      }

      .back-to-top {
        display: inline-block;
        margin-top: 10px;
        font-size: 0.85rem;
        color: #5d6a78;
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .back-to-top:hover {
        color: #13263f;
      }

      /* FOOTER */
      footer {
        padding: 40px 0;
        border-top: 1px solid #e0e6ed;
        margin-top: 80px;
        text-align: center;
        color: #5d6a78;
      }