  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body,
  html {
      height: 100%;
      display: flex;
      flex-direction: column;
      font-family: 'Poppins', sans-serif;
      background-color: #f5f7fa;
  }

  header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 56px;
      background-color: #d1e4ff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1rem;
      box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
      z-index: 1200;
  }

  #menu-toggle {
      background-color: transparent;
      border: none;
      color: #004aad;
      font-size: 2rem;
      cursor: pointer;
      padding: 0.2rem 0.5rem;
      border-radius: 6px;
      transition: background-color 0.2s;
  }

  #menu-toggle:hover {
      background-color: #a8c3ff;
  }

  .header-text {
      color: #004aad;
      font-weight: 600;
      font-size: 1.2rem;
      margin-left: auto;
      padding: 0 1rem;
  }

  .header-text .step-number {
      color: #d93025;
      font-weight: 700;
      font-size: 1.3rem;
      margin-right: 0.25rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  }

  .sidebar {
      width: 250px;
      background-color: #004aad;
      color: white;
      display: flex;
      flex-direction: column;
      padding: 1rem;
      transition: transform 0.3s ease;
      position: fixed;
      top: 56px;
      left: 0;
      height: calc(100vh - 56px);
      transform: translateX(-100%);
      z-index: 1000;
  }

  .sidebar.show {
      transform: translateX(0);
  }

  .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
  }

  .sidebar-header h2 {
      font-size: 1.5rem;
  }

  #close-btn {
      background: transparent;
      border: none;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      padding: 0;
      line-height: 1;
  }

  .sidebar a {
      color: white;
      text-decoration: none;
      margin: 0.27rem 0;
      font-size: 1.02rem;
      display: block;
      transition: background 0.2s;
      padding: 0.3rem 0.6rem;
      border-radius: 6px;
  }

  .sidebar a:hover {
      background-color: #0066cc;
  }

  .sidebar a.sustine-proiect {
      background-color: #374151;
      color: #f9fafb;
      font-weight: 600;
      text-align: center;
      padding: 0.6rem 0.8rem;
      margin-top: 0.2rem;
      border-radius: 8px;
      font-size: 1.05rem;
      transition: background-color 0.3s, transform 0.2s;
  }

  .sidebar a.sustine-proiect:hover {
      background-color: #1f2937;
      transform: scale(1.05);
  }

  .content-wrapper {
      flex: 1 0 auto;
      display: flex;
      flex-direction: column;
      margin-top: 56px;
      padding: 2rem;
      transition: margin-left 0.3s ease;
  }

  .content-wrapper.shifted {
      margin-left: 250px;
  }

  h1.page-title {
      color: #004aad;
      margin-bottom: 2rem;
      text-align: center;
      font-size: 2rem;
  }

  .faq-item {
      background: #ffffff;
      margin-bottom: 1rem;
      border-radius: 12px;
      padding: 1rem 1.5rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
  }

  .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .faq-question {
      font-weight: 600;
      font-size: 1.1rem;
      color: #004aad;
  }

  .faq-answer {
      display: none;
      margin-top: 0.5rem;
      font-size: 1rem;
      color: #333;
      line-height: 1.4;
  }

  footer {
      background-color: #d1e4ff;
      color: #004aad;
      font-size: 1rem;
      text-align: center;
      padding: 1rem 1.5rem;
      box-shadow: 0 -2px 4px rgb(0 0 0 / 0.1);
      font-weight: 600;
      line-height: 1.3;
      margin-top: auto;
  }

  @media (max-width: 575.98px) {
      body {
          font-size: 20px;
          padding: 0;
          margin: 0;
      }

      header {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 56px;
          background-color: #d1e4ff;
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 0 1rem;
          box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
          z-index: 1200;
      }

      .header-text {
          font-size: 0.7rem;
          overflow: hidden;
          text-overflow: ellipsis;
      }

      .header-text .step-number {
          color: #d93025;
          font-weight: 700;
          font-size: 2em;
          margin-right: 0.25rem;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
      }

      #menu-toggle {
          font-size: 2rem;
          padding: 1rem 0.2rem;
      }

      #menu-toggle:hover {
          background-color: #a8c3ff;
      }

      footer {
          font-size: 1rem;
          padding: 2rem;
          text-align: center;
          line-height: 1.8;
      }

      .sidebar {
          width: 250px;
          background-color: #004aad;
          color: white;
          display: flex;
          flex-direction: column;
          padding: 1rem;
          transition: transform 0.3s ease;
          position: fixed;
          top: 56px;
          left: 0;
          height: calc(100vh - 56px);
          transform: translateX(-100%);
          z-index: 1000;
      }


      .sidebar.show {
          transform: translateX(0);
      }

      .sidebar-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 2rem;
      }

      .sidebar-header h2 {
          color: white;
          font-size: 1.5rem;
          margin: 0;
      }

      #close-btn {
          font-size: 2.4rem;
          color: white;
          background: transparent;
          border: none;
          cursor: pointer;
      }

      .sidebar a {
          color: white;
          text-decoration: none;
          margin: 0.27rem 0;
          font-size: 1.1rem;
          display: block;
          transition: background 0.2s;
          padding: 0.02rem 0.2rem;
          border-radius: 6px;
      }

      .sidebar a:hover {
          background-color: #0066cc;
          transform: scale(1.02);
      }

      .sidebar a.sustine-proiect {
          background: #374151;
          color: #f9fafb;
          font-weight: 600;
          text-align: center;
          padding: 0.5rem 0.7rem;
          margin-top: 0.2rem;
          border-radius: 15px;
          font-size: 1rem;
          transition: 0.3s;
      }

      #content-wrapper {
          margin-left: 0;
          margin-top: 50px;
          position: relative;
          z-index: 1;
      }

      .faq-item {
          width: 95%;
          max-width: 100%;
          margin: 0.6rem auto;
          border-radius: 8px;
          padding: 0.8rem 1rem;
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
      }

      .faq-question {
          font-weight: 600;
          font-size: 1rem;
          color: #004aad;
      }

      .faq-answer {
          font-size: 1rem;
          line-height: 1.3;
      }

  }