
        .withdrawal-content {
            background-color: white;
            max-width: 800px;
            margin: 0 auto;
            padding-top: 60px;
            padding-bottom: 60px;
        }
        
        .withdrawal-content h1 {
            color: #2c7873;
            margin-bottom: 30px;
            font-size: 2rem;
            text-align: center;
        }
        
        .withdrawal-info {
            background: #fff5e6;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
            border-left: 4px solid #ff7e5f;
        }
        
        .withdrawal-info h2 {
            color: #e67e22;
            margin-top: 0;
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .withdrawal-form-container {
            background: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
            border: 1px solid #e0e0e0;
        }
        
        .withdrawal-form-container h2 {
            color: #2c7873;
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.6rem;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        
        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group input[type="date"],
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
            font-family: 'Arial', sans-serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2c7873;
            outline: none;
            box-shadow: 0 0 0 2px rgba(44, 120, 115, 0.1);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .checkbox-group input {
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .checkbox-group label {
            font-weight: normal;
            line-height: 1.5;
        }
        
        .required {
            color: #e74c3c;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        .submit-btn {
            background-color: #2c7873;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .submit-btn:hover:not(:disabled) {
            background-color: #1f5d59;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .submit-btn:disabled {
            background-color: #95a5a6;
            cursor: not-allowed;
            opacity: 0.7;
        }
        
        .print-btn {
            background-color: #ff7e5f;
            margin-left: 15px;
        }
        
        .print-btn:hover {
            background-color: #e86a4c;
        }
        
        .instructions {
            background: #e8f4f3;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
        }
        
        .instructions h3 {
            color: #2c7873;
            margin-top: 0;
            margin-bottom: 10px;
        }
        
        .instructions ol {
            padding-left: 20px;
        }
        
        .instructions li {
            margin-bottom: 10px;
            line-height: 1.5;
        }
        
        .contact-info-box {
            background: #f0f7f6;
            padding: 25px;
            border-radius: 10px;
            margin-top: 40px;
            border-left: 4px solid #2c7873;
        }
        
        .contact-info-box h3 {
            color: #2c7873;
            margin-top: 0;
            margin-bottom: 10px;
        }
        
        .back-links {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .back-links a {
            display: inline-block;
            margin: 0 10px;
            color: #2c7873;
            text-decoration: none;
            font-weight: bold;
            padding: 12px 25px;
            border: 2px solid #2c7873;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .back-links a:hover {
            background-color: #2c7873;
            color: white;
        }
        
        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #28a745;
        }
        
        .error-message {
            display: none;
            background: #f8d7da;
            color: #721c24;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #dc3545;
        }
        
        .loading-spinner {
            display: none;
            text-align: center;
            margin: 20px 0;
        }
        
        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #2c7873;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .alternative-options {
            margin: 40px 0;
            padding: 25px;
            background: #f9f9f9;
            border-radius: 10px;
        }
        
        .alternative-options h3 {
            color: #2c7873;
            margin-top: 0;
            margin-bottom: 10px;
        }
        
        .form-hint {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
            display: block;
        }
        
        .email-confirmation {
            background: #e3f2fd;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #2196f3;
        }
        
        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .submit-btn, .print-btn {
                width: 100%;
                margin: 10px 0;
            }
            
            .back-links a {
                display: block;
                margin: 10px 0;
                text-align: center;
            }
            
            .withdrawal-form-container {
                padding: 20px;
            }
        }