 .app-logo-name {
          color: #fff;
          font-size: 2.5em;
          font-weight: bold;
          text-transform: uppercase;
          padding: 16px 0 0 0;
        }
        .app-logo-name span {
          color: #de402e;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #f4f4f4;
        }
        header {
            background-color: #333;
            width: 100%;
            color: white;
            padding: 20px 0px;
            text-align: center;
        }
        header img {
            max-width: 100px;
            padding: 0px 0 20px 0;
        }
        main {
            margin: 20px;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 600px;
        }
        h1 {
            margin-top: 0;
        }
        .input-group {
            margin: 20px 0;
        }
        label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
        }
        input[type="file"] {
            padding: 10px;
        }
        .button-group {
            margin-top: 20px;
        }
        button {
            padding: 10px 20px;
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        .description {
            margin-top: 40px;
            text-align: center;
        }
        .description img {
            max-width: 100px;
            display: block;
            margin: 20px auto;
        }
        .pdf-viewer-feature-img {
          width: 600px;
          height: 320px;
          padding: 4px;
        }
        .privacy-policy-container {
        width: 100%;
        padding: 15px 0;
        text-align: right;
        margin-top: 16px;
    }

    .privacy-policy-link {
        text-decoration: none;
        font-size: 16px;
        text-transform: lowercase;
        padding: 8px;
        color: #007bff;
    }

    .privacy-policy-link:hover {
        color: #5ca4f1;
    }

      .progress-container {
            width: 400px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .step {
            margin: 15px 0;
            font-size: 18px;
            position: relative;
        }

        .step:before {
            content: '';
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #e0e0e0;
            border-radius: 50%;
            margin-right: 10px;
            vertical-align: middle;
            transition: background-color 0.3s;
        }

        .step.active:before {
            background-color: #4caf50;
        }

        .step .progress-bar {
            width: 100%;
            height: 5px;
            background-color: #e0e0e0;
            border-radius: 2.5px;
            overflow: hidden;
            margin-top: 5px;
        }

        .step .progress-bar-inner {
            height: 100%;
            width: 0;
            background-color: #4caf50;
            transition: width 0.5s ease-in-out;
        }

        .page-info {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
            display: none;
        }
