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

        body {
            background: linear-gradient(135deg, #000000 0%, #0d4d4d 100%);
            min-height: 100vh;
            justify-content: center;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
        }

        .form-container {
            padding: 50px;
            margin: 30px auto;
            width: 100%;
        }

        .form-h1 {
            margin-top: 60px;
            color: white;
            text-align: center;
            font-size: 52px;
            letter-spacing: 18px;
            margin-bottom: 50px;
            font-weight: 300;
        }

        .form-form-container {
            border: 4px solid white;
            border-radius: 35px;
            padding: 70px 90px;
            background: rgba(13, 77, 77, 0.2);
        }

        .form-row {
            display: flex;
            gap: 50px;
            margin-bottom: 35px;
            align-items: flex-end;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .form-field.form-title-field {
            flex: 0 0 150px;
        }

        .form-label {
            color: white;
            font-size: 26px;
            margin-bottom: 10px;
            font-weight: 400;
            margin-top: 10px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            padding: 12px 18px;
            font-size: 18px;
            border: none;
            border-radius: 3px;
            background: white;
            outline: none;
        }

        .form-checkbox-section {
            margin-top: 45px;
            margin-bottom: 30px;
        }

        .form-checkbox-row {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .form-title-field select {
            width: 100%;
            height: 45px;
            padding: 8px 10px;
            border-radius: 1px;
            border: 1px solid white;
            font-size: 14px;
        }

        .form-checkbox-row>.form-label {
            color: white;
            font-size: 26px;
            margin-right: 80px;
            min-width: 350px;
            margin-bottom: 0;
        }

        .form-checkbox-options {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .form-checkbox-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        input[type="checkbox"] {
            width: 32px;
            height: 32px;
            cursor: pointer;
            accent-color: white;
        }

        .form-checkbox-item .form-label {
            font-size: 26px;
            margin: 0;
            cursor: pointer;
            color: white;
        }

        .form-submit-container {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        .form-submit-btn {
            background: #7CB342;
            color: white;
            border: none;
            padding: 16px 55px;
            font-size: 22px;
            border-radius: 6px;
            cursor: pointer;
            letter-spacing: 2px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .form-submit-btn:hover {
            background: #689F38;
        }

        .form-back-button {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 55px;
            height: 55px;
            background: rgba(139, 115, 85, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            padding: 0;
            transition: background 0.3s;
        }

        .form-back-button:hover {
            background: rgba(139, 115, 85, 1);
        }

        .form-back-button::before {
            content: '←';
            color: white;
            font-size: 30px;
            font-weight: bold;
            margin-right: 2px;
        }

        @media (max-width: 1024px) {
            .form-form-container {
                padding: 50px 40px;
            }

            .form-row {
                display: block;
                flex-direction: column;
                gap: 50px !important;
            }

            .form-field.form-title-field {
                flex: 1;
            }

            .form-checkbox-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .form-checkbox-row>.form-label {
                margin-bottom: 15px;
                min-width: auto;
            }

            .form-checkbox-options {
                flex-wrap: nowrap;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .form-h1 {
                font-size: 32px;
                letter-spacing: 10px;
            }

            .form-form-container {
                padding: 40px 25px;
            }

            .form-label {
                font-size: 22px;
            }

            .form-checkbox-item .form-label {
                font-size: 22px;
            }

            .form-container {
                padding: 10px;
            }
            .form-title-field select {
                height: 40px;
            }
        }

        @media (max-width: 600px) {

            .form-h1 {
                font-size: 26px;
                letter-spacing: 6px;
                margin-bottom: 25px;
            }

            .form-form-container {
                padding: 25px 15px;
                border-radius: 20px;
            }

            .form-row {
                flex-direction: column;
                gap: 18px;
                margin-bottom: 20px;
            }

            .form-label {
                font-size: 18px;
                margin-bottom: 6px;
            }

            input[type="text"],
            input[type="email"],
            input[type="tel"] {
                padding: 10px 14px;
                font-size: 16px;
            }

            input[type="checkbox"] {
                width: 22px;
                height: 22px;
            }

            .form-checkbox-row>.form-label {
                font-size: 18px;
                margin-right: 0;
            }

            .form-checkbox-item .form-label {
                font-size: 18px;
            }

            .form-submit-btn {
                padding: 12px 30px;
                font-size: 18px;
            }

            .form-back-button {
                width: 45px;
                height: 45px;
                bottom: 15px;
                right: 15px;
            }
        }