        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #ffffff;
            min-height: 100vh;
            padding: 40px 20px;
            direction: rtl;
            color: #2c3e50;
            line-height: 1.6;
        }

        .container {
            max-width: 700px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 0;
            box-shadow: 0 0 30px rgba(46, 125, 50, 0.1);
            overflow: hidden;
            border: 2px solid #2e7d32;
        }

        .header {
            background: linear-gradient(135deg, #2e7d32, #1b5e20);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 400;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.95;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .academy-logo {
            display: inline-block;
            margin-bottom: 20px;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
        }

        .form-container {
            padding: 60px 50px;
            background: #fafafa;
        }

        .form-group {
            margin-bottom: 35px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            color: #2e7d32;
            font-size: 1.1rem;
            font-family: 'Georgia', serif;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e8f5e9;
            border-radius: 0;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: #ffffff;
            font-family: 'Georgia', serif;
            color: #2c3e50;
        }
        
        .form-group input[type="date"] {
            padding: 18px 20px;
            border: 2px solid #e8f5e9;
            border-radius: 0;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: #ffffff;
            font-family: 'Georgia', serif;
            color: #2c3e50;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2e7d32;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
            transform: translateY(-2px);
        }

        .radio-group {
            display: flex;
            gap: 30px;
            margin-top: 15px;
            background: #ffffff;
            padding: 20px;
            border: 2px solid #e8f5e9;
            border-radius: 0;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-size: 1.1rem;
            color: #2c3e50;
            font-family: 'Georgia', serif;
        }

        .radio-option input[type="radio"] {
            width: 20px;
            height: 20px;
            margin: 0;
            accent-color: #2e7d32;
        }

        .payment-section {
            background: #ffffff;
            padding: 40px;
            border-radius: 0;
            margin: 40px 0;
            border: 3px solid #2e7d32;
            position: relative;
        }

        .payment-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #2e7d32, #1b5e20, #2e7d32);
            z-index: -1;
            border-radius: 0;
        }

        .payment-amount {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px 0;
            border-bottom: 2px solid #e8f5e9;
        }

        .amount-display {
            font-size: 3rem;
            font-weight: 400;
            color: #2e7d32;
            margin-bottom: 10px;
            font-family: 'Georgia', serif;
            letter-spacing: 2px;
        }

        .amount-label {
            color: #666;
            font-size: 1.2rem;
            font-style: italic;
            font-family: 'Georgia', serif;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #2e7d32, #1b5e20);
            color: white;
            padding: 20px;
            border: none;
            border-radius: 0;
            font-size: 1.3rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 25px;
            font-family: 'Georgia', serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(46, 125, 50, 0.4);
            background: linear-gradient(135deg, #1b5e20, #2e7d32);
        }

        .submit-btn:disabled {
            background: #bdbdbd;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-left: 10px;
            border: 2px solid transparent;
            border-top-color: #ffffff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error-message {
            background: #ffebee;
            color: #c62828;
            padding: 20px;
            border-radius: 0;
            margin: 20px 0;
            border-left: 5px solid #c62828;
            display: none;
            font-family: 'Georgia', serif;
        }

        .success-message {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 20px;
            border-radius: 0;
            margin: 20px 0;
            border-left: 5px solid #2e7d32;
            display: none;
            font-family: 'Georgia', serif;
        }

        .required {
            color: #c62828;
        }

        @media (max-width: 768px) {
            body {
                padding: 20px 10px;
            }
            
            .container {
                margin: 10px;
                border-radius: 0;
            }
            
            .header {
                padding: 40px 25px;
            }
            
            .header h1 {
                font-size: 2.2rem;
            }
            
            .form-container {
                padding: 40px 25px;
            }
            
            .radio-group {
                flex-direction: column;
                gap: 15px;
            }

            .amount-display {
                font-size: 2.5rem;
            }
        }
