
    body { font-family: 'Times New Roman', Times, serif; }
    img { max-width: 100%; height: auto; }

    /* ── MOBILE MENU DROPDOWN ── */
    .mobile-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: white;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .mobile-menu.active { max-height: 700px; }

    .mobile-menu-item {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid #f0f0f0;
      color: #2c3e50;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      transition: background 0.2s, color 0.2s;
    }
    .mobile-menu-item:hover { background: #fff0e5; color: #f4782a; }
    .mobile-menu-item.active { background: #fff0e5; color: #f4782a; }

    /* ── DROPDOWN SUBMENU ── */
    .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: #f8f9fa;
    }
    .mobile-submenu.active { max-height: 460px; }

    .mobile-submenu-item {
      display: block;
      padding: 12px 16px 12px 40px;
      border-bottom: 1px solid #f0f0f0;
      color: #6c7a8a;
      text-decoration: none;
      font-size: 0.82rem;
      transition: background 0.2s, color 0.2s;
    }
    .mobile-submenu-item:hover { background: #f0f2f5; color: #f4782a; }

    .mobile-submenu-title {
      font-weight: 700;
      color: #0b1f4a;
      display: block;
      margin-bottom: 4px;
    }
    .mobile-submenu-desc {
      font-size: 0.72rem;
      color: #999;
      display: block;
    }

    /* ── TOGGLE BUTTON STYLING ── */
    .menu-toggle {
      width: 32px;
      height: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      margin-left: 12px;
    }
    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #0b1f4a;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(10px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }
