        .submission-page {
            max-width: 1000px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .submission-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .submission-header h1 {
            margin-bottom: 12px;
        }

        .submission-header p {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-section {
            margin-bottom: 40px;
            padding: 30px;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
        }

        .form-section h2 {
            margin-top: 0;
            margin-bottom: 8px;
        }
        .form-section-description {
            margin-bottom: 25px;
            color: #666;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 7px;
        }

        .required {
            color: #c0392b;
        }

        input,
        select,
        textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font: inherit;
            box-sizing: border-box;
        }

 textarea {
            min-height: 140px;
            resize: vertical;
        }

        .help-text {
            display: block;
            margin-top: 6px;
            font-size: 0.875rem;
            color: #777;
        }

        .radio-group {
            display: grid;
            gap: 12px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
        }

        .radio-option input {
            width: auto;
        }

        .upload-box {
            border: 2px dashed #ccc;
            border-radius: 10px;
            padding: 35px 20px;
            text-align: center;
            cursor: pointer;
        }
 .upload-box:hover {
            border-color: #7b2cbf;
        }

        .upload-box input {
            display: none;
        }

        .file-list {
            margin-top: 15px;
        }

        .file-item {
            padding: 8px 0;
        }

        .price-summary {
            background: #f7f7f7;
            border-radius: 10px;
            padding: 25px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .price-total {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            font-size: 1.25rem;
            font-weight: 700;
        }

 .account-choice {
            margin-bottom: 20px;
        }

        .hidden {
            display: none !important;
        }

        .payment-placeholder {
            padding: 25px;
            background: #fafafa;
            border: 1px solid #ddd;
            border-radius: 10px;
        }

        .submit-button {
            width: 100%;
            margin-top: 25px;
            padding: 16px;
            border: 0;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
        }

        @media (max-width: 700px) {

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: auto;
            }

            .form-section {
 padding: 20px;
            }

        }
