.page-container {
            font-family: Arial, sans-serif;
            /* background-color: #f0f5ff; */
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 90vh;
            padding: 20px;
        }

        .container {
            display: flex;
            width: 800px;
            min-height: 400px;
            background-color: #f0f5ff;
            max-width: 100%;
            border-radius: 19px;
        }

        .left-sectionf, .right-sectionf {
            padding: 20px;
            flex: 1;
        }

        .left-sectionf {
            background-color: #f0f5ff;
            margin-top: 51px;
        }

        .right-sectionf {
            background-color: #f0f5ff;
        }

        .text-content h2 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #fff;
            font-weight: bold;
        }

        .text-content p {
            font-size: 0.9em;
            margin-bottom: 20px;
            color: #bdc3c7;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .stat-box {
            background-color: #2c3e50;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            height: 115px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 2px solid #34495e;
        }

        .stat-box span {
            font-size: 32px;
            color: #fff;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .stat-box p {
            margin: 0;
            font-size: 16px;
            color: #ffffff;
        }

        .form-card {
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            padding: 25px;
            width: 77%;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 98, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .form-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 98, 0, 0.3);
        }

        .custom-form-input {
            padding: 14px;
            border: none;
            border-radius: 8px;
            background-color: #3d566e;
            /* color: #ffffff; */
            font-size: 0.9em;
            outline: none;
            width: 100%;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .custom-form-input:focus {
            background-color: #405d75;
            box-shadow: 0 0 8px rgba(77, 123, 252, 0.5);
        }

        .custom-form-input::placeholder {
            color: #bdc3c7;
        }

        .custom-form-select {
            padding: 14px;
            border: none;
            border-radius: 8px;
            background-color: #3d566e;
            color: #ffffff;
            font-size: 0.9em;
            outline: none;
            width: 100%;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23bdc3c7' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .custom-form-select:focus {
            background-color: #405d75;
            box-shadow: 0 0 8px rgba(61, 104, 245, 0.5);
        }

        .custom-form-select option {
            background-color: #3d566e;
            color: #ffffff;
        }

        button {
            padding: 14px;
            background: linear-gradient(90deg, #0a71b4, #0a71b4);
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 1em;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease, background 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            height: 45px;
            font-size: 22px;
        }

        button:hover {
            transform: translateY(-2px);
            background: linear-gradient(90deg, #0a71b4, #0a71b4);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            font-family: Arial, sans-serif;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            width: 400px;
            max-width: 90%;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .modal-header {
            background: #517cb3;
            padding: 20px;
            text-align: center;
            position: relative;
            border-radius: 16px 16px 0 0;
        }

        .modal-header.error {
            background: #e74c3c;
        }

        .close-btn-top {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }

        .close-btn-top:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .checkmark {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 32px;
            color: #517cb3;
        }

        .checkmark.error {
            color: #e74c3c;
        }

        .modal-body {
            padding: 20px;
            text-align: center;
            flex-grow: 1;
        }

        .modal-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .modal-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .modal-footer {
            padding: 0 20px 20px;
            text-align: center;
        }

        .close-btn {
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 20px;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }

        /*.close-btn:hover {*/
        /*    background: #c0392b;*/
        /*}*/

        .close-btn.success {
            background: #e74c3c;
        }

        /* For error modal, adjust colors */
        .modal-body.error .modal-title {
            color: #e74c3c;
        }

        .modal-body.error .modal-message {
            color: #e74c3c;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
                width: 90%;
                min-height: auto;
            }

            .left-sectionf, .right-sectionf {
                flex: none;
                width: 100%;
                margin-top: 0;
                padding: 15px;
            }

            .left-sectionf {
                margin-top: 0;
            }

            .text-content h2 {
                font-size: 28px;
            }

            .text-content p {
                font-size: 0.8em;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
                justify-items: center;
            }

            .stat-box {
                height: 100px;
                max-width: 200px;
            }

            .form-card {
                width: 100%;
                padding: 20px;
            }

            .custom-form-input,
            .custom-form-select {
                font-size: 0.85em;
                padding: 12px;
            }

            button {
                font-size: 18px;
                height: 40px;
            }

            .modal-content {
                width: 90%;
            }

            .modal-title {
                font-size: 20px;
            }

            .modal-message {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .page-container {
                height: auto;
                padding: 10px;
            }

            .container {
                width: 95%;
            }

            .text-content h2 {
                font-size: 24px;
            }

            .text-content p {
                font-size: 0.7em;
            }

            .stat-box {
                height: 80px;
                max-width: 150px;
            }

            .stat-box span {
                font-size: 22px;
            }

            .stat-box p {
                font-size: 11px;
            }

            .form-card {
                padding: 15px;
            }

            .custom-form-input,
            .custom-form-select {
                font-size: 0.8em;
                padding: 10px;
            }

            button {
                font-size: 16px;
                height: 35px;
            }

            .checkmark {
                width: 50px;
                height: 50px;
                font-size: 28px;
            }
        }